summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/bar/popouts/Audio.qml2
-rw-r--r--modules/bar/popouts/Bluetooth.qml2
-rw-r--r--modules/controlcenter/network/SimpleButton.qml12
3 files changed, 8 insertions, 8 deletions
diff --git a/modules/bar/popouts/Audio.qml b/modules/bar/popouts/Audio.qml
index 827f868..20e98e5 100644
--- a/modules/bar/popouts/Audio.qml
+++ b/modules/bar/popouts/Audio.qml
@@ -111,7 +111,7 @@ Item {
color: Colours.palette.m3primaryContainer
onColor: Colours.palette.m3onPrimaryContainer
text: qsTr("Open Settings")
- icon: "chevron_right"
+ icon: "settings"
onClicked: {
root.wrapper.detach("audio");
diff --git a/modules/bar/popouts/Bluetooth.qml b/modules/bar/popouts/Bluetooth.qml
index 60af466..c1f2029 100644
--- a/modules/bar/popouts/Bluetooth.qml
+++ b/modules/bar/popouts/Bluetooth.qml
@@ -171,7 +171,7 @@ ColumnLayout {
color: Colours.palette.m3primaryContainer
onColor: Colours.palette.m3onPrimaryContainer
text: qsTr("Open Settings")
- icon: "chevron_right"
+ icon: "settings"
onClicked: {
root.wrapper.detach("bluetooth");
diff --git a/modules/controlcenter/network/SimpleButton.qml b/modules/controlcenter/network/SimpleButton.qml
index c949db3..00e5a4e 100644
--- a/modules/controlcenter/network/SimpleButton.qml
+++ b/modules/controlcenter/network/SimpleButton.qml
@@ -33,12 +33,6 @@ StyledRect {
anchors.centerIn: parent
spacing: Appearance.spacing.small
- StyledText {
- id: label
- Layout.leftMargin: root.icon.length > 0 ? Appearance.padding.smaller : 0
- color: parent.parent.onColor
- }
-
MaterialIcon {
id: iconItem
visible: root.icon.length > 0
@@ -46,6 +40,12 @@ StyledRect {
color: root.onColor
font.pointSize: Appearance.font.size.large
}
+
+ StyledText {
+ id: label
+ Layout.leftMargin: root.icon.length > 0 ? Appearance.padding.smaller : 0
+ color: parent.parent.onColor
+ }
}
signal clicked