From 5d513eeb252c25b782051acd41e229974ab6e493 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 10 Aug 2025 16:51:41 +1000 Subject: internal: more colour fixes :woe: --- modules/bar/popouts/Bluetooth.qml | 2 +- modules/bar/popouts/Network.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'modules') 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 -- cgit v1.2.3-freya