From 7049dda7de632ddc0fd6e9bc3091e0e482efe9b1 Mon Sep 17 00:00:00 2001 From: Pico Date: Fri, 14 Nov 2025 01:26:38 +0300 Subject: [PATCH] fixed button contrast when triggered --- .../quickshell/ii/modules/common/widgets/StyledComboBox.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml b/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml index 5b9da31e2..a7ab3e9a5 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml @@ -21,7 +21,7 @@ ComboBox { background: Rectangle { radius: root.buttonRadius - color: root.down ? root.colBackgroundActive : root.hovered ? root.colBackgroundHover : root.colBackground + color: (root.down && !root.popup.visible) ? root.colBackgroundActive : root.hovered ? root.colBackgroundHover : root.colBackground Behavior on color { animation: Appearance.animation.elementMoveFast.colorAnimation.createObject(this)