Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Jan 16, 2025
1 parent c24b052 commit f6ac006
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/project-editor/project/ui/SettingsNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,7 @@ export const SettingsContent = observer(
extension.key == "variables" ||
extension.key == "styles" ||
extension.key == "lvglStyles" ||
extension.key == "lvglGroups" ||
extension.key == "fonts" ||
extension.key == "bitmaps" ||
extension.key == "texts" ||
Expand All @@ -436,7 +437,10 @@ export const SettingsContent = observer(
return false;
}
} else {
if (extension.key == "lvglStyles") {
if (
extension.key == "lvglStyles" ||
extension.key == "lvglGroups"
) {
return false;
}
}
Expand Down

0 comments on commit f6ac006

Please sign in to comment.