From 4ee4a781f40225b49323f0a417c688fc736adbb1 Mon Sep 17 00:00:00 2001 From: "j.delarago" Date: Mon, 20 Jun 2022 11:33:28 +0200 Subject: [PATCH] Change flashing yellow warning on resolution combobox to blue flashing lining. Removed alwaysRunToEnd on animation since we would like the previous animation to stop if a user clicks through multiple intents triggering multiple animations. CURA-8849 --- resources/qml/Widgets/ComboBox.qml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/resources/qml/Widgets/ComboBox.qml b/resources/qml/Widgets/ComboBox.qml index 77e6c489e9..eac85bfb44 100644 --- a/resources/qml/Widgets/ComboBox.qml +++ b/resources/qml/Widgets/ComboBox.qml @@ -56,28 +56,30 @@ ComboBox background: UM.UnderlineBackground { - //Rectangle for highlighting when this combobox needs to pulse. + // Rectangle for highlighting when this combobox needs to pulse. Rectangle { anchors.fill: parent opacity: 0 - color: UM.Theme.getColor("warning") + color: "transparent" + + border.color: UM.Theme.getColor("text_field_border_active") + border.width: UM.Theme.getSize("default_lining").width SequentialAnimation on opacity { id: pulseAnimation running: false - loops: 1 - alwaysRunToEnd: true + loops: 2 PropertyAnimation { to: 1 - duration: 300 + duration: 150 } PropertyAnimation { to: 0 - duration : 2000 + duration : 150 } } }