We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1ae678 commit 39dc75bCopy full SHA for 39dc75b
1 file changed
packages/core-editor/src/core/core.ts
@@ -64,7 +64,7 @@ export class Core {
64
return;
65
}
66
const tickStart = Date.now();
67
- if (this.editor?.isPaused) await runner(tickStart - previousTick);
+ if (!this.editor?.isPaused) await runner(tickStart - previousTick);
68
previousTick = tickStart;
69
setTimeout(render, tickLengthMs + tickStart - Date.now());
70
};
0 commit comments