We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5dcd0f commit 7999e40Copy full SHA for 7999e40
packages/project-editor/flow/runtime/wasm-runtime.tsx
@@ -242,6 +242,10 @@ export class WasmRuntime extends RemoteRuntime {
242
initJSObjectsMap(this.assetsMap, this.wasmModuleId);
243
}
244
245
+ if (this.projectStore.projectTypeTraits.isLVGL) {
246
+ await preloadAllBitmaps(this.projectStore);
247
+ }
248
+
249
this.worker = createWasmWorker(
250
this.wasmModuleId,
251
isDebuggerActive
@@ -279,8 +283,6 @@ export class WasmRuntime extends RemoteRuntime {
279
283
);
280
284
281
285
if (this.projectStore.projectTypeTraits.isLVGL) {
282
- await preloadAllBitmaps(this.projectStore);
-
286
this.lgvlPageRuntime = new LVGLPageViewerRuntime(this);
287
288
0 commit comments