Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasper Lamboo <c.lamboo@ultimaker.com>2022-06-29 14:01:09 +0300
committerGitHub <noreply@github.com>2022-06-29 14:01:09 +0300
commitf4ee4ad05d0ff704e1bfc5650872da9ba6743490 (patch)
tree896429429d27e05f6b72d562b520bacfd42ba51e /resources/qml/Widgets/ComboBox.qml
parentf241638890ac1076546f01593c5ccb3253812d51 (diff)
parent7700d01cf35b2d0ed7a93580051044257f925b6d (diff)
Merge pull request #12573 from Ultimaker/CURA-8849_more_intent_fixes
[CURA-8849] more intent fixes
Diffstat (limited to 'resources/qml/Widgets/ComboBox.qml')
-rw-r--r--resources/qml/Widgets/ComboBox.qml14
1 files 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
}
}
}