Index: sources/gui/qml/main.qml =================================================================== diff -u -rbea36be2766046e63c4e82539a630b5cee7ce1c6 -r69c86c57349b7d4a6ba47a801ba27b1c470fade5 --- sources/gui/qml/main.qml (.../main.qml) (revision bea36be2766046e63c4e82539a630b5cee7ce1c6) +++ sources/gui/qml/main.qml (.../main.qml) (revision 69c86c57349b7d4a6ba47a801ba27b1c470fade5) @@ -341,7 +341,7 @@ disable : _GuiView.manufactSetup || _GuiView.updateSetup hidden : true // it should be hidden by default since the landing screen changed to init and it does not have the main menu until the POST passes. width : Variables.applicationWidth - isMainMenu : true + model : _model Component.onCompleted : { _settingsStack.visible = false @@ -355,6 +355,12 @@ _managerStack .visible = vIndex === 1 _settingsStack.visible = vIndex === 2 } + + ListModel { id: _model + ListElement { text: qsTr("Treatment") ; visible: true } + ListElement { text: qsTr("Prescriptions") ; visible: true } + ListElement { text: qsTr("Settings") ; visible: true } + } } Connections { target: vTDOpMode