summaryrefslogtreecommitdiff
path: root/modules/controlcenter/bluetooth/DeviceList.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/controlcenter/bluetooth/DeviceList.qml')
-rw-r--r--modules/controlcenter/bluetooth/DeviceList.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/controlcenter/bluetooth/DeviceList.qml b/modules/controlcenter/bluetooth/DeviceList.qml
index 839f6ad..cc0a966 100644
--- a/modules/controlcenter/bluetooth/DeviceList.qml
+++ b/modules/controlcenter/bluetooth/DeviceList.qml
@@ -167,7 +167,7 @@ ColumnLayout {
anchors.right: parent.right
implicitHeight: deviceInner.implicitHeight + Appearance.padding.normal * 2
- color: root.session.bt.active === modelData ? Colours.palette.m3surfaceContainer : "transparent"
+ color: Qt.alpha(Colours.palette.m3surfaceContainer, root.session.bt.active === modelData ? 1 : 0)
radius: Appearance.rounding.normal
StateLayer {
@@ -241,7 +241,7 @@ ColumnLayout {
implicitHeight: connectIcon.implicitHeight + Appearance.padding.small * 2
radius: Appearance.rounding.full
- color: device.connected ? Colours.palette.m3primaryContainer : "transparent"
+ color: Qt.alpha(Colours.palette.m3primaryContainer, device.connected ? 1 : 0)
StyledBusyIndicator {
anchors.centerIn: parent