We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaa5cc3 commit 7a1c321Copy full SHA for 7a1c321
packages/common/src/context/contexts/executions/execution.context.ts
@@ -1,7 +1,7 @@
1
import { BaseContext } from "./base.context";
2
3
export class ExecutionContext extends BaseContext {
4
- protected _isRunning: boolean = false;
+ protected _isRunning: boolean = true;
5
6
get isRunning() {
7
return this._isRunning;
packages/graphics-2d/src/graphics-2d.library.ts
@@ -21,6 +21,7 @@ export class Graphics2DLibrary extends BaseGraphicsLibrary {
21
throw new Error("Can't initialize the canvas context");
22
}
23
this._core = new GraphicsCore(context);
24
+ await this._core.init();
25
this._factory = new GraphicsFactory(this._core);
26
27
0 commit comments