Index: sources/gui/qml/pages/MainHome.qml =================================================================== diff -u -r52d17dab2211c2e4d9160c55c316ad7a40ce4d6c -r39a514158384c0ad4bfcfb90bafbaa4ca8dc5a26 --- sources/gui/qml/pages/MainHome.qml (.../MainHome.qml) (revision 52d17dab2211c2e4d9160c55c316ad7a40ce4d6c) +++ sources/gui/qml/pages/MainHome.qml (.../MainHome.qml) (revision 39a514158384c0ad4bfcfb90bafbaa4ca8dc5a26) @@ -58,12 +58,12 @@ } text.text : qsTr("Hemodialysis") onClicked : createTreatment(HeaderBar.Mode_HD) - isDefault : true width : 435 //// ----- @LEAHIZED: Move to Variables.qml height : 92 //// ----- @LEAHIZED: Move to Variables.qml pixelSize : 30 //// ----- @LEAHIZED: Move to Variables.qml backgroundColor : Colors.panelBackgroundColor borderColor : Colors.panelBorderColor + selectColor : Colors.backgroundButtonSelectDark } TouchRect { id : _createHDFTreatment @@ -74,12 +74,12 @@ } text.text : qsTr("Hemodiafiltration") onClicked : createTreatment(HeaderBar.Mode_HDF) - isDefault : true width : 435 //// ----- @LEAHIZED: Move to Variables.qml height : 92 //// ----- @LEAHIZED: Move to Variables.qml pixelSize : 30 //// ----- @LEAHIZED: Move to Variables.qml backgroundColor : Colors.panelBackgroundColor borderColor : Colors.panelBorderColor + selectColor : Colors.backgroundButtonSelectDark } NotificationBarSmall { id: _notification @@ -88,7 +88,11 @@ onVisibleChanged: { if (visible) { - _mainMenu.hidden = false + _headerBar.activeStack = null + _mainMenu.hidden = false // initially our landing screen is _initialModeScreen which should not have the Main menu. } + else { + reasonText = "" + } } }