From 4510a8b06ed1a36b82389b59645e1ebb06417721 Mon Sep 17 00:00:00 2001 From: "j.delarago" Date: Wed, 23 Feb 2022 15:15:46 +0100 Subject: [PATCH] Down spinbox button highlighting up spinbox button when clicked. CURA-8688 --- resources/qml/SpinBox.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/SpinBox.qml b/resources/qml/SpinBox.qml index 4035515750..b5e93804b1 100644 --- a/resources/qml/SpinBox.qml +++ b/resources/qml/SpinBox.qml @@ -99,7 +99,7 @@ Item width: height UM.UnderlineBackground { - color: spinBox.up.pressed ? spinBox.palette.mid : UM.Theme.getColor("detail_background") + color: spinBox.down.pressed ? spinBox.palette.mid : UM.Theme.getColor("detail_background") } UM.RecolorImage