diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-18 12:21:31 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-18 12:21:31 -0500 |
| commit | dedff0bfe5cc6cc4f4081782daed8eb7963f1657 (patch) | |
| tree | c0005ba27d9aa292f22002affc232a01fd4670ff /modules/controlcenter/taskbar | |
| parent | controlcenter: added more missing options to taskbar panel (diff) | |
| download | caelestia-shell-dedff0bfe5cc6cc4f4081782daed8eb7963f1657.tar.gz caelestia-shell-dedff0bfe5cc6cc4f4081782daed8eb7963f1657.tar.bz2 caelestia-shell-dedff0bfe5cc6cc4f4081782daed8eb7963f1657.zip | |
controlcenter: minor moving around elements in taskbar panel
Diffstat (limited to '')
| -rw-r--r-- | modules/controlcenter/taskbar/TaskbarPane.qml | 82 |
1 files changed, 41 insertions, 41 deletions
diff --git a/modules/controlcenter/taskbar/TaskbarPane.qml b/modules/controlcenter/taskbar/TaskbarPane.qml index e84e5fe..1c3adbc 100644 --- a/modules/controlcenter/taskbar/TaskbarPane.qml +++ b/modules/controlcenter/taskbar/TaskbarPane.qml @@ -527,47 +527,6 @@ Item { alignTop: true StyledText { - text: qsTr("Tray Settings") - font.pointSize: Appearance.font.size.normal - } - - ConnectedButtonGroup { - rootItem: root - - options: [ - { - label: qsTr("Background"), - propertyName: "trayBackground", - onToggled: function(checked) { - root.trayBackground = checked; - root.saveConfig(); - } - }, - { - label: qsTr("Compact"), - propertyName: "trayCompact", - onToggled: function(checked) { - root.trayCompact = checked; - root.saveConfig(); - } - }, - { - label: qsTr("Recolour"), - propertyName: "trayRecolour", - onToggled: function(checked) { - root.trayRecolour = checked; - root.saveConfig(); - } - } - ] - } - } - - SectionContainer { - Layout.fillWidth: true - alignTop: true - - StyledText { text: qsTr("Bar Behavior") font.pointSize: Appearance.font.size.normal } @@ -732,6 +691,47 @@ Item { } } } + + SectionContainer { + Layout.fillWidth: true + alignTop: true + + StyledText { + text: qsTr("Tray Settings") + font.pointSize: Appearance.font.size.normal + } + + ConnectedButtonGroup { + rootItem: root + + options: [ + { + label: qsTr("Background"), + propertyName: "trayBackground", + onToggled: function(checked) { + root.trayBackground = checked; + root.saveConfig(); + } + }, + { + label: qsTr("Compact"), + propertyName: "trayCompact", + onToggled: function(checked) { + root.trayCompact = checked; + root.saveConfig(); + } + }, + { + label: qsTr("Recolour"), + propertyName: "trayRecolour", + onToggled: function(checked) { + root.trayRecolour = checked; + root.saveConfig(); + } + } + ] + } + } } } |