Index: sources/gui/qml/components/WaitDone.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra55e0de27d8c427dd4d441f47bb22ca2fe0ca462 --- sources/gui/qml/components/WaitDone.qml (.../WaitDone.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/components/WaitDone.qml (.../WaitDone.qml) (revision a55e0de27d8c427dd4d441f47bb22ca2fe0ca462) @@ -36,6 +36,9 @@ height : _root.diameter opacity : ! _root.done ? 1 : 0 source : "qrc:/images/iBusy" + fillMode: Image.PreserveAspectFit + mipmap : true + smooth : true RotationAnimator on rotation { running : ! _root.done && ! _root.pause @@ -44,15 +47,19 @@ loops : Animation.Infinite duration: 7200 } - Behavior on opacity { OpacityAnimator { duration: 1200 } } + Behavior on opacity { OpacityAnimator { duration: 250 } } } Image { id: _checkIndicator anchors.centerIn: _root opacity : _root.done ? 1 : 0 - width : _root.diameter + 15 - height : _root.diameter + 15 + width : _root.diameter + height : _root.diameter source : fail ? "qrc:/images/iBusyFail" : "qrc:/images/iBusyDone" - Behavior on opacity { OpacityAnimator { duration: 1200 } } + fillMode: Image.PreserveAspectFit + mipmap : true + + Behavior on opacity { OpacityAnimator { duration: 250 } } + } }