diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-10 16:52:03 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-10 16:52:03 +1000 |
| commit | feb7647110b5911f65445731d9108fede559f1fb (patch) | |
| tree | 62e24401d6e59ca7c9ef8764321e63aad99f4b29 /modules | |
| parent | Merge branch 'main' into new-lock (diff) | |
| parent | internal: more colour fixes (diff) | |
| download | caelestia-shell-feb7647110b5911f65445731d9108fede559f1fb.tar.gz caelestia-shell-feb7647110b5911f65445731d9108fede559f1fb.tar.bz2 caelestia-shell-feb7647110b5911f65445731d9108fede559f1fb.zip | |
Merge branch 'main' into new-lock
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/bar/popouts/Bluetooth.qml | 2 | ||||
| -rw-r--r-- | modules/bar/popouts/Network.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/bar/popouts/Bluetooth.qml b/modules/bar/popouts/Bluetooth.qml index f8035ed..6678030 100644 --- a/modules/bar/popouts/Bluetooth.qml +++ b/modules/bar/popouts/Bluetooth.qml @@ -108,7 +108,7 @@ ColumnLayout { implicitHeight: connectIcon.implicitHeight + Appearance.padding.small radius: Appearance.rounding.full - color: device.modelData.state === BluetoothDeviceState.Connected ? Colours.palette.m3primary : Colours.tPalette.m3surface + color: Qt.alpha(Colours.palette.m3primary, device.modelData.state === BluetoothDeviceState.Connected ? 1 : 0) StyledBusyIndicator { anchors.centerIn: parent diff --git a/modules/bar/popouts/Network.qml b/modules/bar/popouts/Network.qml index ed48b86..6a95b73 100644 --- a/modules/bar/popouts/Network.qml +++ b/modules/bar/popouts/Network.qml @@ -102,7 +102,7 @@ ColumnLayout { implicitHeight: connectIcon.implicitHeight + Appearance.padding.small radius: Appearance.rounding.full - color: networkItem.modelData.active ? Colours.palette.m3primary : Colours.tPalette.m3surface + color: Qt.alpha(Colours.palette.m3primary, networkItem.modelData.active ? 1 : 0) StyledBusyIndicator { anchors.centerIn: parent |