Fix undefined stepper.
This commit is contained in:
parent
6aa72f411b
commit
ebf26a5e29
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ var CanvasGraphics = (function CanvasGraphicsClosure() {
|
||||||
var slowCommands = this.slowCommands;
|
var slowCommands = this.slowCommands;
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
if (stepper !== null && i === stepper.nextBreakPoint) {
|
if (stepper && i === stepper.nextBreakPoint) {
|
||||||
stepper.breakIt(i, continueCallback);
|
stepper.breakIt(i, continueCallback);
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue