Index: sources/gui/qml/components/RangeMarker.qml =================================================================== diff -u -r7db80dd579054dd4754ae4d135a4a3e647f09b5f -r3e91f569d10fe5b76298b85ee3a6875f80e33063 --- sources/gui/qml/components/RangeMarker.qml (.../RangeMarker.qml) (revision 7db80dd579054dd4754ae4d135a4a3e647f09b5f) +++ sources/gui/qml/components/RangeMarker.qml (.../RangeMarker.qml) (revision 3e91f569d10fe5b76298b85ee3a6875f80e33063) @@ -46,7 +46,7 @@ Rectangle { id: _handle visible : false - width : _root.width * 4 + width : _root.width * 3 height : width radius : width color : _root.color @@ -69,15 +69,15 @@ Text { id: _textValue font { pixelSize : Fonts.fontPixelRangeMarker - weight : Font.DemiBold + weight : Font.Bold } anchors { right : valueOnTop ? parent.left : undefined top : valueOnTop ? undefined : parent.top bottom : valueOnTop ? _handle.top : undefined - bottomMargin: valueOnTop ? 10 : 0 + bottomMargin: valueOnTop ? 5 : 0 rightMargin : valueOnTop ? -12 : 5 topMargin : valueOnTop ? 0 : -5 horizontalCenter: valueOnTop ? _handle.horizontalCenter : undefined Index: sources/gui/qml/globals/Fonts.qml =================================================================== diff -u -r7db80dd579054dd4754ae4d135a4a3e647f09b5f -r3e91f569d10fe5b76298b85ee3a6875f80e33063 --- sources/gui/qml/globals/Fonts.qml (.../Fonts.qml) (revision 7db80dd579054dd4754ae4d135a4a3e647f09b5f) +++ sources/gui/qml/globals/Fonts.qml (.../Fonts.qml) (revision 3e91f569d10fe5b76298b85ee3a6875f80e33063) @@ -40,7 +40,7 @@ readonly property int fontPixelVitals : 60 - readonly property int fontPixelRangeMarker : 32 + readonly property int fontPixelRangeMarker : 16 readonly property int fontPixelRangeRectText : 14 readonly property int fontPixelStepCurrent : 18 @@ -77,6 +77,7 @@ readonly property int fontPixelUltrafiltrationAdjustmentConfirmButton : fontPixelUltrafiltrationAdjustmentButton readonly property int fontPixelUltrafiltrationAdjustmentEditValue : 46 readonly property int fontPixelUltrafiltrationAdjustmentNotification : 32 + readonly property int fontPixelUltrafiltrationRangeMarker : 32 readonly property int fontPixelUltrafiltrationRateUnit : 16 readonly property int fontPixelRinsebackAdjustmentButton : 26 Index: sources/gui/qml/globals/Variables.qml =================================================================== diff -u -r7db80dd579054dd4754ae4d135a4a3e647f09b5f -r3e91f569d10fe5b76298b85ee3a6875f80e33063 --- sources/gui/qml/globals/Variables.qml (.../Variables.qml) (revision 7db80dd579054dd4754ae4d135a4a3e647f09b5f) +++ sources/gui/qml/globals/Variables.qml (.../Variables.qml) (revision 3e91f569d10fe5b76298b85ee3a6875f80e33063) @@ -78,10 +78,11 @@ readonly property int rangeRectRadius : 2 readonly property int rangeRectTextMargin : 10 readonly property int rangeRectBorderWidth : 2 - readonly property int rangeMarkerHeight : 50 + readonly property int rangeMarkerHeight : 60 readonly property int rangeMarkerHeightMidle : 40 readonly property int rangeMarkerHeightShort : 30 - readonly property int rangeMarkerWidth : 3 + readonly property int rangeMarkerWidth : 2 + readonly property int rangeMarkerWidthMidle : 3 readonly property int progressbarHeight : 30 readonly property int progressbarHandler : 30 Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentUltrafiltrationStart.qml =================================================================== diff -u -r3e9d665cd35268a451d4de5b83949a5a93ab4799 -r3e91f569d10fe5b76298b85ee3a6875f80e33063 --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentUltrafiltrationStart.qml (.../TreatmentAdjustmentUltrafiltrationStart.qml) (revision 3e9d665cd35268a451d4de5b83949a5a93ab4799) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentUltrafiltrationStart.qml (.../TreatmentAdjustmentUltrafiltrationStart.qml) (revision 3e91f569d10fe5b76298b85ee3a6875f80e33063) @@ -96,6 +96,17 @@ } text : _private.setVolume.toFixed(Variables.ultrafiltrationPrecision) + " " + Variables.unitVolume } + marker { + width : Variables.rangeMarkerWidthMidle + handle.width : marker.width * 4 + text { + anchors.bottomMargin: marker.valueOnTop ? 10 : 0 + font { + pixelSize: Fonts.fontPixelUltrafiltrationRangeMarker + weight: Font.DemiBold + } + } + } } TouchRect { id: _pauseButton