Skip to content

Commit 7a1c321

Browse files
committed
fix(common): change is running
1 parent aaa5cc3 commit 7a1c321

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/common/src/context/contexts/executions/execution.context.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { BaseContext } from "./base.context";
22

33
export class ExecutionContext extends BaseContext {
4-
protected _isRunning: boolean = false;
4+
protected _isRunning: boolean = true;
55

66
get isRunning() {
77
return this._isRunning;

packages/graphics-2d/src/graphics-2d.library.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export class Graphics2DLibrary extends BaseGraphicsLibrary {
2121
throw new Error("Can't initialize the canvas context");
2222
}
2323
this._core = new GraphicsCore(context);
24+
await this._core.init();
2425
this._factory = new GraphicsFactory(this._core);
2526
}
2627

0 commit comments

Comments
 (0)