Index: sources/gui/qml/pages/TreatmentHome.qml =================================================================== diff -u -rb9c5b0b3afc3b34d4980ecc4f023f498f80dafbc -r442d1c4f53c96991d4103485ff5ff683ed00d4f7 --- sources/gui/qml/pages/TreatmentHome.qml (.../TreatmentHome.qml) (revision b9c5b0b3afc3b34d4980ecc4f023f498f80dafbc) +++ sources/gui/qml/pages/TreatmentHome.qml (.../TreatmentHome.qml) (revision 442d1c4f53c96991d4103485ff5ff683ed00d4f7) @@ -1,6 +1,6 @@ /*! * - * Copyright (c) 2019-2019 Diality Inc. - All Rights Reserved. + * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * \copyright \n * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, \n * IN PART OR IN WHOLE, \n @@ -32,6 +32,9 @@ property alias startTreatmentButton : _startTreatmentRect.button property alias createTreatmentButton: _createTreatmentRect.button + // 2 - Header + LogoD { id: _headerLogo } + // exported properties TreatmentStart { id : _treatmentStart onBackPressed: { @@ -65,4 +68,10 @@ } } } + + onVisibleChanged: { + if (visible) { + _mainMenu.hidden = false + } + } }