controlcenter: minor moving around elements in taskbar panel

This commit is contained in:
ATMDA 2025-11-18 12:21:31 -05:00
parent 7ac403d933
commit dedff0bfe5

View file

@ -522,47 +522,6 @@ 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();
}
}
]
}
}
SectionContainer {
Layout.fillWidth: true
alignTop: true
@ -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();
}
}
]
}
}
}
}