Index: sources/gui/qml/components/WaitDone.qml =================================================================== diff -u -rb50431293b0690d6071f0fd58044880909cef01d -r3e64d98e243484505a44d99b13826097cb6b01eb --- sources/gui/qml/components/WaitDone.qml (.../WaitDone.qml) (revision b50431293b0690d6071f0fd58044880909cef01d) +++ sources/gui/qml/components/WaitDone.qml (.../WaitDone.qml) (revision 3e64d98e243484505a44d99b13826097cb6b01eb) @@ -27,6 +27,7 @@ property int diameter: 50 property bool done : false property bool fail : false + property bool pause : false Image { id: _busyIndicator visible : true @@ -37,7 +38,7 @@ source : "qrc:/images/iBusy" RotationAnimator on rotation { - running : ! _root.done + running : ! _root.done && ! _root.pause from : 0 to : 360 loops : Animation.Infinite