Index: sources/gui/qml/components/WaitDone.qml =================================================================== diff -u -r22bd5aba8d60c1cfda0e0b3bdcb0f54cdc27dafb -rb50431293b0690d6071f0fd58044880909cef01d --- sources/gui/qml/components/WaitDone.qml (.../WaitDone.qml) (revision 22bd5aba8d60c1cfda0e0b3bdcb0f54cdc27dafb) +++ sources/gui/qml/components/WaitDone.qml (.../WaitDone.qml) (revision b50431293b0690d6071f0fd58044880909cef01d) @@ -26,6 +26,7 @@ Item { id: _root property int diameter: 50 property bool done : false + property bool fail : false Image { id: _busyIndicator visible : true @@ -54,7 +55,7 @@ opacity : _root.done ? 1 : 0 width : _root.diameter + 15 height : _root.diameter + 15 - source : "qrc:/images/iBusyDone" + source : fail ? "qrc:/images/iBusyFail" : "qrc:/images/iBusyDone" Behavior on opacity { OpacityAnimator { duration: 1200 } } } }