diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-11-15 17:15:02 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-11-15 17:15:34 +1100 |
| commit | 6a92f985d8739ef2c397714f79e18b74f48fb705 (patch) | |
| tree | e9fdf8c9bf07bc84b3e02f9a73de8545f1e29e9a /modules/bar/popouts/Bluetooth.qml | |
| parent | controlcenter: removed signal strength percentage from network list (diff) | |
| download | caelestia-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/Bluetooth.qml')
| -rw-r--r-- | modules/bar/popouts/Bluetooth.qml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/modules/bar/popouts/Bluetooth.qml b/modules/bar/popouts/Bluetooth.qml index 63621c2..4674905 100644 --- a/modules/bar/popouts/Bluetooth.qml +++ b/modules/bar/popouts/Bluetooth.qml @@ -165,17 +165,16 @@ ColumnLayout { } } - 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("bluetooth"); - } + onClicked: root.wrapper.detach("bluetooth") } component Toggle: RowLayout { |