Index: sources/gui/qml/pages/MainHome.qml =================================================================== diff -u -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 -r21bcf654a57e2b3a6d1a2fee1173c3dff81f8f99 --- sources/gui/qml/pages/MainHome.qml (.../MainHome.qml) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) +++ sources/gui/qml/pages/MainHome.qml (.../MainHome.qml) (revision 21bcf654a57e2b3a6d1a2fee1173c3dff81f8f99) @@ -34,6 +34,12 @@ signal startTreatment() signal createTreatment() + Image { + anchors.fill: backgroundRect + source: "qrc:/images/iHomeBackground" + } + + // 2 - Header ImageLogoD { id: _headerLogo } @@ -51,16 +57,18 @@ anchors.centerIn: parent TouchRect { id : _createTreatmentRect anchors.horizontalCenter: parent.horizontalCenter - text.text: qsTr("Create Treatment") - onClicked: createTreatment() + text.text : qsTr("Create Treatment") + onClicked : createTreatment() + isDefault : true width : 435 //// ----- @LEAHIZED: Move to Variables.qml height : 92 //// ----- @LEAHIZED: Move to Variables.qml pixelSize : 30 //// ----- @LEAHIZED: Move to Variables.qml } TouchRect { id : _startTreatmentRect anchors.horizontalCenter: parent.horizontalCenter - text.text: qsTr("Start Treatment") - onClicked: startTreatment() + text.text : qsTr("Start Treatment") + onClicked : startTreatment() + isDefault : true width : 435 //// ----- @LEAHIZED: Move to Variables.qml height : 92 //// ----- @LEAHIZED: Move to Variables.qml pixelSize : 30 //// ----- @LEAHIZED: Move to Variables.qml Index: sources/gui/qml/pages/treatment/TreatmentSection.qml =================================================================== diff -u -r8fa24e534368d2baad16f262d31630996798977f -r21bcf654a57e2b3a6d1a2fee1173c3dff81f8f99 --- sources/gui/qml/pages/treatment/TreatmentSection.qml (.../TreatmentSection.qml) (revision 8fa24e534368d2baad16f262d31630996798977f) +++ sources/gui/qml/pages/treatment/TreatmentSection.qml (.../TreatmentSection.qml) (revision 21bcf654a57e2b3a6d1a2fee1173c3dff81f8f99) @@ -53,7 +53,7 @@ layer.enabled: true layer.effect: DropShadow { id: _dropShadow - horizontalOffset: 0 + horizontalOffset: 3 verticalOffset: 5 radius: 3.0 samples: 7 Index: sources/gui/qml/pages/treatment/sections/TreatmentFlowsComponent.qml =================================================================== diff -u -r7caa737179a8c31825ae6445f593ac7ff5f95080 -r21bcf654a57e2b3a6d1a2fee1173c3dff81f8f99 --- sources/gui/qml/pages/treatment/sections/TreatmentFlowsComponent.qml (.../TreatmentFlowsComponent.qml) (revision 7caa737179a8c31825ae6445f593ac7ff5f95080) +++ sources/gui/qml/pages/treatment/sections/TreatmentFlowsComponent.qml (.../TreatmentFlowsComponent.qml) (revision 21bcf654a57e2b3a6d1a2fee1173c3dff81f8f99) @@ -124,8 +124,8 @@ layer.enabled : _root.dropShadowEnabled layer.effect : DropShadow { id: _dropShadow - horizontalOffset: 0 - verticalOffset : 5 + horizontalOffset: 3 + verticalOffset : 3 radius : 3.0 samples : 7 color : "#50000000" Index: sources/gui/qml/pages/treatment/sections/TreatmentTime.qml =================================================================== diff -u -r7caa737179a8c31825ae6445f593ac7ff5f95080 -r21bcf654a57e2b3a6d1a2fee1173c3dff81f8f99 --- sources/gui/qml/pages/treatment/sections/TreatmentTime.qml (.../TreatmentTime.qml) (revision 7caa737179a8c31825ae6445f593ac7ff5f95080) +++ sources/gui/qml/pages/treatment/sections/TreatmentTime.qml (.../TreatmentTime.qml) (revision 21bcf654a57e2b3a6d1a2fee1173c3dff81f8f99) @@ -134,8 +134,8 @@ layer.enabled: true layer.effect: DropShadow { id: _dropShadow - horizontalOffset: 0 - verticalOffset : 5 + horizontalOffset: 3 + verticalOffset : 3 radius : 3.0 samples : 7 color : "#50000000"