Index: sources/gui/qml/main.qml =================================================================== diff -u -r4e708c6e93443b01ac26c71a466708916ede4abf -rcdf80193148db0831cf2c1067732ddc6f6dac5fb --- sources/gui/qml/main.qml (.../main.qml) (revision 4e708c6e93443b01ac26c71a466708916ede4abf) +++ sources/gui/qml/main.qml (.../main.qml) (revision cdf80193148db0831cf2c1067732ddc6f6dac5fb) @@ -103,6 +103,7 @@ import "qrc:/pages" import "qrc:/pages/treatment" import "qrc:/pages/settings" +import "qrc:/pages/post" import "qrc:/components" import "qrc:/dialogs" @@ -217,6 +218,8 @@ // 9 - Others + PostInProgress { id: _postInProgress } + Text { // TEST : Application version should be moved into the information screen later. color : Colors.textMain anchors { @@ -253,4 +256,10 @@ timeout : _alarmItem.timeout backgroundFading : vHDOperationMode.fault } + + Component.onCompleted: { + // TODO: Re-show the main menu when re-entering the start screen + _mainMenu.visible = false + _mainStack.push(_postInProgress) + } }