Index: sources/gui/qml/components/TouchArea.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -rc6e28125b5b27609c0344f94135eb890d38e028a --- sources/gui/qml/components/TouchArea.qml (.../TouchArea.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/components/TouchArea.qml (.../TouchArea.qml) (revision c6e28125b5b27609c0344f94135eb890d38e028a) @@ -45,6 +45,8 @@ top: parent.top left: parent.left } + height: Variables.arrowHeight + verticalAlignment: Text.AlignVCenter text: _root.title font { pixelSize: Fonts.fontPixelTouchAreaTitle Index: sources/gui/qml/globals/Fonts.qml =================================================================== diff -u -ra7c580f0998ee781c47314384f677249cea4c4b4 -rc6e28125b5b27609c0344f94135eb890d38e028a --- sources/gui/qml/globals/Fonts.qml (.../Fonts.qml) (revision a7c580f0998ee781c47314384f677249cea4c4b4) +++ sources/gui/qml/globals/Fonts.qml (.../Fonts.qml) (revision c6e28125b5b27609c0344f94135eb890d38e028a) @@ -76,7 +76,7 @@ readonly property int fontPixelUltrafiltrationAdjustmentNextButton : fontPixelUltrafiltrationAdjustmentButton readonly property int fontPixelUltrafiltrationAdjustmentConfirmButton : fontPixelUltrafiltrationAdjustmentButton readonly property int fontPixelUltrafiltrationAdjustmentEditValue : 46 - readonly property int fontPixelUltrafiltrationRateUnit : 13 + readonly property int fontPixelUltrafiltrationRateUnit : 16 readonly property int fontPixelRinsebackAdjustmentButton : 26 Index: sources/gui/qml/pages/treatment/sections/TreatmentUltrafiltration.qml =================================================================== diff -u -ra7c580f0998ee781c47314384f677249cea4c4b4 -rc6e28125b5b27609c0344f94135eb890d38e028a --- sources/gui/qml/pages/treatment/sections/TreatmentUltrafiltration.qml (.../TreatmentUltrafiltration.qml) (revision a7c580f0998ee781c47314384f677249cea4c4b4) +++ sources/gui/qml/pages/treatment/sections/TreatmentUltrafiltration.qml (.../TreatmentUltrafiltration.qml) (revision c6e28125b5b27609c0344f94135eb890d38e028a) @@ -44,21 +44,23 @@ text : ufInfoText textColor : ufInfoTextColor } + Text { id: _ufCurrentRateText anchors { right: parent.right - rightMargin: Variables.arrowWidth + 2 // Aligning text to be beyond the arrow + rightMargin: Variables.arrowWidth * 2 // Aligning text to be beyond the arrow top: parent.top - topMargin: 4 } - horizontalAlignment: Text.AlignRight + horizontalAlignment : Text.AlignRight + verticalAlignment : Text.AlignVCenter + height : Variables.arrowHeight + text: qsTr("(%1 %2)").arg(vTreatmentUltrafiltration.ultrafiltration_UfCurrentRate.toFixed(0)) .arg(Variables.unitTextUltrafiltrationRate ) font.pixelSize: Fonts.fontPixelUltrafiltrationRateUnit color: Colors.touchTextAreaTitle } - ProgressBarEx { id: _progressbarex enabled : _root.isTouchable y : 75 Index: sources/view/settings/VSettings.cpp =================================================================== diff -u -ra7c580f0998ee781c47314384f677249cea4c4b4 -rc6e28125b5b27609c0344f94135eb890d38e028a --- sources/view/settings/VSettings.cpp (.../VSettings.cpp) (revision a7c580f0998ee781c47314384f677249cea4c4b4) +++ sources/view/settings/VSettings.cpp (.../VSettings.cpp) (revision c6e28125b5b27609c0344f94135eb890d38e028a) @@ -305,7 +305,7 @@ LOG_DEBUG("Valid Service Password Entered!"); } else { - LOG_DEBUG("Inalid Service Password Entered!"); + LOG_DEBUG("Invalid Service Password Entered!"); } return isValid; }