From e8daf00efc8906e3c4304ecb84d5a0e78254dc34 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 7 Jun 2026 18:33:48 +1000 Subject: [PATCH] fix: bar scroll actions conf descriptions --- modules/nexus/pages/panels/TaskbarPanel.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/nexus/pages/panels/TaskbarPanel.qml b/modules/nexus/pages/panels/TaskbarPanel.qml index ff9101d1..5b0bb870 100644 --- a/modules/nexus/pages/panels/TaskbarPanel.qml +++ b/modules/nexus/pages/panels/TaskbarPanel.qml @@ -102,7 +102,7 @@ PageBase { Layout.fillWidth: true first: true text: qsTr("Workspaces") - subtext: qsTr("Scroll over the bar to switch workspaces") + subtext: qsTr("Scroll over the workspace indicator to switch workspaces") checked: Config.bar.scrollActions.workspaces onToggled: GlobalConfig.bar.scrollActions.workspaces = checked } @@ -110,6 +110,7 @@ PageBase { ToggleRow { Layout.fillWidth: true text: qsTr("Volume") + subtext: qsTr("Scroll on the top half of the bar to adjust volume") checked: Config.bar.scrollActions.volume onToggled: GlobalConfig.bar.scrollActions.volume = checked } @@ -118,6 +119,7 @@ PageBase { Layout.fillWidth: true last: true text: qsTr("Brightness") + subtext: qsTr("Scroll on the bottom half of the bar to adjust brightness") checked: Config.bar.scrollActions.brightness onToggled: GlobalConfig.bar.scrollActions.brightness = checked }