diff options
| -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 |