Index: sources/gui/qml/pages/MainStack.qml =================================================================== diff -u -r376859852f4d1a07263c44524aec347db29e0133 -ra73067eedc12bcb4a41afdf4aabb6db9f1994f33 --- sources/gui/qml/pages/MainStack.qml (.../MainStack.qml) (revision 376859852f4d1a07263c44524aec347db29e0133) +++ sources/gui/qml/pages/MainStack.qml (.../MainStack.qml) (revision a73067eedc12bcb4a41afdf4aabb6db9f1994f33) @@ -74,7 +74,26 @@ } ScreenItem { id: _initialModeScreen - PlaceHolderText { screenName: qsTr("INITIAL MODE") } + Image { id: _dialityLogo + Behavior on opacity { OpacityAnimator { duration: 1000 } } + opacity : 1 + anchors.centerIn: parent + source : "qrc:/images/iLogoDiality" + } + + WaitDone { id: _hdWaitdone + diameter: 50 + anchors { + top: _dialityLogo.bottom + topMargin: 50 + horizontalCenter: parent.horizontalCenter + } + visible : true + // HD will pause for a few seconds before changing to stand-by mode + // so we can show that POST has completed + done : vHDPostFinalResult.result < 2 + failed : vHDPostFinalResult.result === 0 + } onVisibleChanged: if (visible) _mainMenu.hidden = true }