Index: sources/gui/qml/components/WaitDone.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -r4a2b83dcb56555861d2c741a8e8894e5b07e24bf --- sources/gui/qml/components/WaitDone.qml (.../WaitDone.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/components/WaitDone.qml (.../WaitDone.qml) (revision 4a2b83dcb56555861d2c741a8e8894e5b07e24bf) @@ -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 @@ -50,9 +53,13 @@ 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" + fillMode: Image.PreserveAspectFit + mipmap : true + Behavior on opacity { OpacityAnimator { duration: 1200 } } + } }