Index: sources/gui/qml/pages/MainHome.qml =================================================================== diff -u -r1132f049e169cc87a059261f72fca0ceb7d739f1 -r52d17dab2211c2e4d9160c55c316ad7a40ce4d6c --- sources/gui/qml/pages/MainHome.qml (.../MainHome.qml) (revision 1132f049e169cc87a059261f72fca0ceb7d739f1) +++ sources/gui/qml/pages/MainHome.qml (.../MainHome.qml) (revision 52d17dab2211c2e4d9160c55c316ad7a40ce4d6c) @@ -54,31 +54,34 @@ anchors { horizontalCenter : parent.horizontalCenter verticalCenter : parent.verticalCenter - verticalCenterOffset: Variables.defaultMargin * -1 + verticalCenterOffset: Variables.defaultMargin * -3 } - text.text : qsTr("HD") - 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 + 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 } TouchRect { id : _createHDFTreatment anchors { top : _createHDTreatment.bottom - topMargin : Variables.defaultMargin + topMargin : Variables.defaultMargin * 2 horizontalCenter: _createHDTreatment.horizontalCenter } - text.text : qsTr("HDF") - 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 + 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 } - NotificationBarSmall { id: _notification anchors.bottomMargin: Variables.mainMenuHeight }