diff --git a/Modules/Settings/Tabs/BarTab.qml b/Modules/Settings/Tabs/BarTab.qml index cd49a773..56b8e022 100644 --- a/Modules/Settings/Tabs/BarTab.qml +++ b/Modules/Settings/Tabs/BarTab.qml @@ -48,15 +48,6 @@ ColumnLayout { } } - NToggle { - label: "Show Active Window Icon" - description: "Display the icon of the currently focused window" - value: Settings.data.bar.showActiveWindowIcon - onToggled: function (newValue) { - Settings.data.bar.showActiveWindowIcon = newValue - } - } - NToggle { label: "Show System Info" description: "Display system information (CPU, RAM, Temperature)" diff --git a/Services/Settings.qml b/Services/Settings.qml index 5295302b..c2f77afe 100644 --- a/Services/Settings.qml +++ b/Services/Settings.qml @@ -72,7 +72,6 @@ Singleton { bar: JsonObject { property bool showActiveWindow: true - property bool showActiveWindowIcon: false property bool showSystemInfo: false property bool showMedia: false property bool showTaskbar: false