Skip to content

Commit 7999e40

Browse files
committed
fix "Run Project" for the LVGL projects
1 parent f5dcd0f commit 7999e40

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/project-editor/flow/runtime/wasm-runtime.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,10 @@ export class WasmRuntime extends RemoteRuntime {
242242
initJSObjectsMap(this.assetsMap, this.wasmModuleId);
243243
}
244244

245+
if (this.projectStore.projectTypeTraits.isLVGL) {
246+
await preloadAllBitmaps(this.projectStore);
247+
}
248+
245249
this.worker = createWasmWorker(
246250
this.wasmModuleId,
247251
isDebuggerActive
@@ -279,8 +283,6 @@ export class WasmRuntime extends RemoteRuntime {
279283
);
280284

281285
if (this.projectStore.projectTypeTraits.isLVGL) {
282-
await preloadAllBitmaps(this.projectStore);
283-
284286
this.lgvlPageRuntime = new LVGLPageViewerRuntime(this);
285287
}
286288
}

0 commit comments

Comments
 (0)