diff --git a/Modules/Settings/Tabs/DisplayTab.qml b/Modules/Settings/Tabs/DisplayTab.qml index 3282813..b9b39d0 100644 --- a/Modules/Settings/Tabs/DisplayTab.qml +++ b/Modules/Settings/Tabs/DisplayTab.qml @@ -48,7 +48,7 @@ Item { } NText { - text: "By default, all bars are displayed. Select one or more below to narrow your view." + text: "By default, bars and notifications are shown on all displays. Select one or more below to narrow your view." font.pointSize: Style.fontSize * scaling color: Colors.mOnSurfaceVariant } @@ -98,19 +98,6 @@ Item { } } - NToggle { - label: "Dock" - description: "Enable the dock on this monitor" - value: (Settings.data.dock.monitors || []).indexOf(modelData.name) !== -1 - onToggled: function (newValue) { - if (newValue) { - Settings.data.dock.monitors = addMonitor(Settings.data.dock.monitors, modelData.name) - } else { - Settings.data.dock.monitors = removeMonitor(Settings.data.dock.monitors, modelData.name) - } - } - } - NToggle { label: "Notifications" description: "Enable notifications on this monitor" @@ -125,6 +112,19 @@ Item { } } } + + NToggle { + label: "Dock" + description: "Enable the dock on this monitor" + value: (Settings.data.dock.monitors || []).indexOf(modelData.name) !== -1 + onToggled: function (newValue) { + if (newValue) { + Settings.data.dock.monitors = addMonitor(Settings.data.dock.monitors, modelData.name) + } else { + Settings.data.dock.monitors = removeMonitor(Settings.data.dock.monitors, modelData.name) + } + } + } } } }