aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/fusion/BusyIndicator.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/controls/fusion/BusyIndicator.qml')
-rw-r--r--src/imports/controls/fusion/BusyIndicator.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/imports/controls/fusion/BusyIndicator.qml b/src/imports/controls/fusion/BusyIndicator.qml
index d0f2b531..9be5ae71 100644
--- a/src/imports/controls/fusion/BusyIndicator.qml
+++ b/src/imports/controls/fusion/BusyIndicator.qml
@@ -54,12 +54,12 @@ T.BusyIndicator {
implicitHeight: 28
color: control.palette.text
+ running: control.running
opacity: control.running ? 1 : 0
- visible: control.running || opacityAnimator.running
- Behavior on opacity { OpacityAnimator { id: opacityAnimator; duration: 250 } }
+ Behavior on opacity { OpacityAnimator { duration: 250 } }
RotationAnimator on rotation {
- running: control.running || opacityAnimator.running
+ running: control.running || contentItem.visible
from: 0
to: 360
duration: 1000