Skip to content

Commit d8ae7ff

Browse files
committed
fix getWidgetIndex
1 parent 87c4914 commit d8ae7ff

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

packages/project-editor/lvgl/page-runtime.ts

+15-1
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ export class LVGLPageViewerRuntime extends LVGLPageRuntime {
11281128
this.userWidgetsStack.pop();
11291129
}
11301130

1131-
nextWidgetIndex = 0;
1131+
nextWidgetIndex = -1;
11321132

11331133
override getWidgetIndex(object: LVGLWidget | Page) {
11341134
const identifier = [
@@ -1154,6 +1154,20 @@ export class LVGLPageViewerRuntime extends LVGLPageRuntime {
11541154
return widgetIndex;
11551155
}
11561156

1157+
if (this.nextWidgetIndex == -1) {
1158+
this.nextWidgetIndex = Math.max(
1159+
...Object.keys(this.runtime.assetsMap.lvglWidgetIndexes).map(
1160+
key => this.runtime.assetsMap.lvglWidgetIndexes[key]
1161+
)
1162+
);
1163+
1164+
if (this.nextWidgetIndex == -Infinity) {
1165+
this.nextWidgetIndex = 0;
1166+
} else {
1167+
this.nextWidgetIndex++;
1168+
}
1169+
}
1170+
11571171
return this.nextWidgetIndex++;
11581172
}
11591173
}

0 commit comments

Comments
 (0)