File tree 3 files changed +23
-0
lines changed
3 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -268,6 +268,7 @@ export const ThemesSideView = observer(
268
268
onEditItem = { this . onEditThemeName }
269
269
searchInput = { false }
270
270
editable = { ! readOnly }
271
+ doNotUsePropertyGrid = { true }
271
272
/>
272
273
) : null ;
273
274
}
@@ -286,6 +287,7 @@ export const ThemesSideView = observer(
286
287
< ColorItem itemId = { itemId } readOnly = { readOnly } />
287
288
) }
288
289
editable = { ! readOnly }
290
+ doNotUsePropertyGrid = { true }
289
291
/>
290
292
) : null ;
291
293
}
Original file line number Diff line number Diff line change @@ -38,6 +38,8 @@ export interface IPanel {
38
38
39
39
canDelete ?( ) : boolean ;
40
40
deleteSelection ?( ) : void ;
41
+
42
+ doNotUsePropertyGrid ?( ) : boolean ;
41
43
}
42
44
43
45
export class NavigationStore {
@@ -474,11 +476,21 @@ export class NavigationStore {
474
476
}
475
477
}
476
478
479
+ lastPropertyGridObjects : IEezObject [ ] = [ ] ;
480
+
477
481
get propertyGridObjects ( ) {
478
482
let objects : IEezObject [ ] ;
479
483
480
484
const navigationStore = this ;
481
485
486
+ if (
487
+ navigationStore . selectedPanel &&
488
+ navigationStore . selectedPanel . doNotUsePropertyGrid &&
489
+ navigationStore . selectedPanel . doNotUsePropertyGrid ( )
490
+ ) {
491
+ return this . lastPropertyGridObjects ;
492
+ }
493
+
482
494
if (
483
495
navigationStore . selectedPanel &&
484
496
navigationStore . selectedPanel . selectedObjects !== undefined &&
@@ -528,6 +540,8 @@ export class NavigationStore {
528
540
}
529
541
}
530
542
543
+ this . lastPropertyGridObjects = objects ;
544
+
531
545
return objects ;
532
546
}
533
547
Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ interface ListNavigationProps {
162
162
searchInput ?: boolean ;
163
163
editable ?: boolean ;
164
164
onFilesDrop ?: ( files : File [ ] ) => void ;
165
+ doNotUsePropertyGrid ?: boolean ;
165
166
}
166
167
167
168
export const ListNavigation = observer (
@@ -337,6 +338,12 @@ export const ListNavigation = observer(
337
338
navigationStore . setSelectedPanel ( this ) ;
338
339
}
339
340
} ;
341
+ doNotUsePropertyGrid ( ) {
342
+ if ( this . props . doNotUsePropertyGrid != undefined ) {
343
+ return this . props . doNotUsePropertyGrid ;
344
+ }
345
+ return false ;
346
+ }
340
347
341
348
onSearchChange ( event : any ) {
342
349
this . searchText = ( $ ( event . target ) . val ( ) as string ) . trim ( ) ;
You can’t perform that action at this time.
0 commit comments