Index: sources/gui/qml/pages/treatment/TreatmentHome.qml =================================================================== diff -u -rdff9d50ebfa80ec99313586e1d48662b72940d24 -r8fa24e534368d2baad16f262d31630996798977f --- sources/gui/qml/pages/treatment/TreatmentHome.qml (.../TreatmentHome.qml) (revision dff9d50ebfa80ec99313586e1d48662b72940d24) +++ sources/gui/qml/pages/treatment/TreatmentHome.qml (.../TreatmentHome.qml) (revision 8fa24e534368d2baad16f262d31630996798977f) @@ -15,6 +15,7 @@ // Qt import QtQuick 2.12 +import QtGraphicalEffects 1.12 // Project @@ -52,6 +53,10 @@ width: 600 height: 600 backgroundColor: "#091E31" + text.font.pixelSize: 35 + onVisibleChanged: { + menuBlurredBackground.visible = _lockDialog.visible + } Rectangle { id: _mainCircle objectName: "lockDialogMainCircle" @@ -66,7 +71,7 @@ color: "transparent" border.color: _treatmentFlows.editEnabled ? "#6697D2" : "#A47E38" - border.width: 3 + border.width: 2 Image { id : _iconImage objectName: "lockDialogIcon" @@ -86,7 +91,7 @@ color: "transparent" border.color: _treatmentFlows.editEnabled ? "#8FC1FE" : "#CDAF78" - border.width: 2 + border.width: 1 height: parent.height - 20 width: height radius : height @@ -102,7 +107,7 @@ anchors { fill: parent margins: Variables.defaultMargin - topMargin : Variables.notificationHeight + Variables.defaultMargin // FIXME: 120 - to adjust from current headerbar implementation + topMargin : Variables.notificationHeight + (Variables.defaultMargin * 2)// FIXME: 120 - to adjust from current headerbar implementation } Row { id: _topRow