summaryrefslogtreecommitdiff
path: root/modules/bar/popouts/Audio.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-11-15 17:15:02 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-11-15 17:15:34 +1100
commit6a92f985d8739ef2c397714f79e18b74f48fb705 (patch)
treee9fdf8c9bf07bc84b3e02f9a73de8545f1e29e9a /modules/bar/popouts/Audio.qml
parentcontrolcenter: removed signal strength percentage from network list (diff)
downloadcaelestia-shell-6a92f985d8739ef2c397714f79e18b74f48fb705.tar.gz
caelestia-shell-6a92f985d8739ef2c397714f79e18b74f48fb705.tar.bz2
caelestia-shell-6a92f985d8739ef2c397714f79e18b74f48fb705.zip
internal: use existing button controls
Instead of SimpleButton
Diffstat (limited to 'modules/bar/popouts/Audio.qml')
-rw-r--r--modules/bar/popouts/Audio.qml11
1 files changed, 5 insertions, 6 deletions
diff --git a/modules/bar/popouts/Audio.qml b/modules/bar/popouts/Audio.qml
index 40c09d3..58b29ba 100644
--- a/modules/bar/popouts/Audio.qml
+++ b/modules/bar/popouts/Audio.qml
@@ -105,17 +105,16 @@ Item {
}
}
- SimpleButton {
+ IconTextButton {
Layout.fillWidth: true
Layout.topMargin: Appearance.spacing.normal
- color: Colours.palette.m3primaryContainer
- onColor: Colours.palette.m3onPrimaryContainer
+ inactiveColour: Colours.palette.m3primaryContainer
+ inactiveOnColour: Colours.palette.m3onPrimaryContainer
+ verticalPadding: Appearance.padding.small
text: qsTr("Open settings")
icon: "settings"
- onClicked: {
- root.wrapper.detach("audio");
- }
+ onClicked: root.wrapper.detach("audio")
}
}
}