From 06b647fcde74c87b016a96969b2d30b86b48c1fb Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Wed, 8 Oct 2025 19:23:39 -0400 Subject: [PATCH] volumeosd: Only highlight when delegate is pressed There is already the radio button to denote selected audio widgets, it's otherwise very jarring. --- components/mobileshell/qml/popups/volumeosd/ListItemBase.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/mobileshell/qml/popups/volumeosd/ListItemBase.qml b/components/mobileshell/qml/popups/volumeosd/ListItemBase.qml index 31c26fb6..1f84f4c2 100644 --- a/components/mobileshell/qml/popups/volumeosd/ListItemBase.qml +++ b/components/mobileshell/qml/popups/volumeosd/ListItemBase.qml @@ -46,7 +46,7 @@ Controls.AbstractButton { background: Rectangle { radius: Kirigami.Units.cornerRadius - color: ((baseItem.selected || baseItem.down) && !baseItem.onlyOne) + color: (baseItem.down) ? Qt.rgba(Kirigami.Theme.highlightColor.r, Kirigami.Theme.highlightColor.g, Kirigami.Theme.highlightColor.b, 0.3) : 'transparent' }