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)