fixed button contrast when triggered

This commit is contained in:
Pico
2025-11-14 01:26:38 +03:00
parent 3e55442654
commit 7049dda7de
@@ -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)