Skip to content

Commit a72f9a0

Browse files
committed
1 parent 565b85d commit a72f9a0

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

packages/project-editor/features/style/theme.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ export const ThemesSideView = observer(
268268
onEditItem={this.onEditThemeName}
269269
searchInput={false}
270270
editable={!readOnly}
271+
doNotUsePropertyGrid={true}
271272
/>
272273
) : null;
273274
}
@@ -286,6 +287,7 @@ export const ThemesSideView = observer(
286287
<ColorItem itemId={itemId} readOnly={readOnly} />
287288
)}
288289
editable={!readOnly}
290+
doNotUsePropertyGrid={true}
289291
/>
290292
) : null;
291293
}

packages/project-editor/store/navigation.ts

+14
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ export interface IPanel {
3838

3939
canDelete?(): boolean;
4040
deleteSelection?(): void;
41+
42+
doNotUsePropertyGrid?(): boolean;
4143
}
4244

4345
export class NavigationStore {
@@ -474,11 +476,21 @@ export class NavigationStore {
474476
}
475477
}
476478

479+
lastPropertyGridObjects: IEezObject[] = [];
480+
477481
get propertyGridObjects() {
478482
let objects: IEezObject[];
479483

480484
const navigationStore = this;
481485

486+
if (
487+
navigationStore.selectedPanel &&
488+
navigationStore.selectedPanel.doNotUsePropertyGrid &&
489+
navigationStore.selectedPanel.doNotUsePropertyGrid()
490+
) {
491+
return this.lastPropertyGridObjects;
492+
}
493+
482494
if (
483495
navigationStore.selectedPanel &&
484496
navigationStore.selectedPanel.selectedObjects !== undefined &&
@@ -528,6 +540,8 @@ export class NavigationStore {
528540
}
529541
}
530542

543+
this.lastPropertyGridObjects = objects;
544+
531545
return objects;
532546
}
533547

packages/project-editor/ui-components/ListNavigation.tsx

+7
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ interface ListNavigationProps {
162162
searchInput?: boolean;
163163
editable?: boolean;
164164
onFilesDrop?: (files: File[]) => void;
165+
doNotUsePropertyGrid?: boolean;
165166
}
166167

167168
export const ListNavigation = observer(
@@ -337,6 +338,12 @@ export const ListNavigation = observer(
337338
navigationStore.setSelectedPanel(this);
338339
}
339340
};
341+
doNotUsePropertyGrid() {
342+
if (this.props.doNotUsePropertyGrid != undefined) {
343+
return this.props.doNotUsePropertyGrid;
344+
}
345+
return false;
346+
}
340347

341348
onSearchChange(event: any) {
342349
this.searchText = ($(event.target).val() as string).trim();

0 commit comments

Comments
 (0)