styledcombobox: use predefined color anim

This commit is contained in:
end-4
2025-11-13 22:21:50 +01:00
parent c64f3a0122
commit 6f19e1cdd6
@@ -22,10 +22,7 @@ ComboBox {
color: root.down ? root.colBackgroundActive : root.hovered ? root.colBackgroundHover : root.colBackground
Behavior on color {
ColorAnimation {
duration: 150
easing.type: Easing.OutCubic
}
animation: Appearance.animation.elementMoveFast.colorAnimation.createObject(this)
}
}
@@ -81,10 +78,7 @@ ComboBox {
color: root.currentIndex === itemDelegate.index ? Appearance.colors.colPrimary : itemDelegate.down ? Appearance.colors.colSecondaryContainerActive : itemDelegate.hovered ? Appearance.colors.colSecondaryContainerHover : "transparent"
Behavior on color {
ColorAnimation {
duration: 150
easing.type: Easing.OutCubic
}
animation: Appearance.animation.elementMoveFast.colorAnimation.createObject(this)
}
}