Index: sources/gui/qml/components/WaitDone.qml =================================================================== diff -u -rc0c63c4b149dafea2b02e4cd31f223e392ff7818 -r22bd5aba8d60c1cfda0e0b3bdcb0f54cdc27dafb --- sources/gui/qml/components/WaitDone.qml (.../WaitDone.qml) (revision c0c63c4b149dafea2b02e4cd31f223e392ff7818) +++ sources/gui/qml/components/WaitDone.qml (.../WaitDone.qml) (revision 22bd5aba8d60c1cfda0e0b3bdcb0f54cdc27dafb) @@ -35,14 +35,14 @@ opacity : ! _root.done ? 1 : 0 source : "qrc:/images/iBusy" - NumberAnimation on rotation { + RotationAnimator on rotation { running : ! _root.done from : 0 to : 360 loops : Animation.Infinite duration: 7200 } - Behavior on opacity { NumberAnimation { duration: 1200 } } + Behavior on opacity { OpacityAnimator { duration: 1200 } } MouseArea { id: _mousearea anchors.fill: parent onClicked: done = true @@ -55,6 +55,6 @@ width : _root.diameter + 15 height : _root.diameter + 15 source : "qrc:/images/iBusyDone" - Behavior on opacity { NumberAnimation{ duration: 1200 } } + Behavior on opacity { OpacityAnimator { duration: 1200 } } } }