@@ -16,7 +16,6 @@ import {
16
16
import { visitObjects } from "project-editor/core/search" ;
17
17
import {
18
18
getProjectStore ,
19
- getAncestorOfType ,
20
19
ProjectStore ,
21
20
createObject ,
22
21
getClass ,
@@ -419,22 +418,23 @@ export class FlowFragment extends EezObject {
419
418
| ContainerWidget
420
419
| SelectWidget
421
420
| LVGLWidget
422
- | undefined = getAncestorOfType (
423
- getParent ( getParent ( object ) ) ,
424
- ContainerWidget . classInfo
425
- ) as ContainerWidget | undefined ;
426
-
427
- if ( ! containerAncestor ) {
428
- containerAncestor = getAncestorOfType (
429
- getParent ( getParent ( object ) ) ,
430
- SelectWidget . classInfo
431
- ) as SelectWidget | undefined ;
432
- if ( ! containerAncestor ) {
433
- containerAncestor = getAncestorOfType (
434
- getParent ( getParent ( object ) ) ,
435
- ProjectEditor . LVGLWidgetClass . classInfo
436
- ) as LVGLWidget | undefined ;
421
+ | undefined ;
422
+
423
+ let testObject : IEezObject = object ;
424
+ while ( testObject ) {
425
+ if (
426
+ testObject instanceof
427
+ ProjectEditor . ContainerWidgetClass ||
428
+ testObject instanceof ProjectEditor . SelectWidgetClass ||
429
+ testObject instanceof
430
+ ProjectEditor . LVGLPanelWidgetClass ||
431
+ testObject instanceof
432
+ ProjectEditor . LVGLContainerWidgetClass
433
+ ) {
434
+ containerAncestor = testObject ;
435
+ break ;
437
436
}
437
+ testObject = getParent ( testObject ) ;
438
438
}
439
439
440
440
if ( containerAncestor ) {
0 commit comments