diff --git a/src/interaction/touchbar.mm b/src/interaction/touchbar.mm index 15b0dc80ec..a20fbd264b 100644 --- a/src/interaction/touchbar.mm +++ b/src/interaction/touchbar.mm @@ -215,7 +215,7 @@ NSArray* focusIdentifiers; // Remove unused variable warning (void)sender; OsEng.scriptEngine().queueScript( -"local b = openspace.getPropertyValue('Modules.ImGUI.Main.Properties.Enabled');\n\ +"local b = openspace.getPropertyValue('Modules.ImGUI.Main.FeaturedProperties.Enabled');\n\ local c = openspace.getPropertyValue('Modules.ImGUI.Main.IsHidden');\n\ openspace.setPropertyValue('Modules.ImGUI.*.Enabled', false);\n\ if b and c then\n\ @@ -224,20 +224,20 @@ if b and c then\n\ -- enabled, but also all windows are hidden\n\ openspace.setPropertyValueSingle('Modules.ImGUI.Main.IsHidden', false);\n\ openspace.setPropertyValueSingle(\n\ - 'Modules.ImGUI.Main.Properties.Enabled',\n\ + 'Modules.ImGUI.Main.FeaturedProperties.Enabled',\n\ true\n\ );\n\ openspace.setPropertyValueSingle(\n\ - 'Modules.ImGUI.Main.Space/Time.Enabled',\n\ + 'Modules.ImGUI.Main.SpaceTime.Enabled',\n\ true\n\ );\n\ else\n\ openspace.setPropertyValueSingle(\n\ - 'Modules.ImGUI.Main.Properties.Enabled',\n\ + 'Modules.ImGUI.Main.FeaturedProperties.Enabled',\n\ not b\n\ );\n\ openspace.setPropertyValueSingle(\n\ - 'Modules.ImGUI.Main.Space/Time.Enabled',\n\ + 'Modules.ImGUI.Main.SpaceTime.Enabled',\n\ not b\n\ );\n\ openspace.setPropertyValueSingle('Modules.ImGUI.Main.IsHidden', b);\n\