File tree 1 file changed +15
-1
lines changed
packages/project-editor/lvgl
1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -1128,7 +1128,7 @@ export class LVGLPageViewerRuntime extends LVGLPageRuntime {
1128
1128
this . userWidgetsStack . pop ( ) ;
1129
1129
}
1130
1130
1131
- nextWidgetIndex = 0 ;
1131
+ nextWidgetIndex = - 1 ;
1132
1132
1133
1133
override getWidgetIndex ( object : LVGLWidget | Page ) {
1134
1134
const identifier = [
@@ -1154,6 +1154,20 @@ export class LVGLPageViewerRuntime extends LVGLPageRuntime {
1154
1154
return widgetIndex ;
1155
1155
}
1156
1156
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
+
1157
1171
return this . nextWidgetIndex ++ ;
1158
1172
}
1159
1173
}
You can’t perform that action at this time.
0 commit comments