Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentFlow.qml =================================================================== diff -u -r1a78d846d8271f39cb472f88e52f825dbd805a9c -r3e0f282424478c53146eef9bcad2a57cec5c3d1a --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentFlow.qml (.../TreatmentAdjustmentFlow.qml) (revision 1a78d846d8271f39cb472f88e52f825dbd805a9c) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentFlow.qml (.../TreatmentAdjustmentFlow.qml) (revision 3e0f282424478c53146eef9bcad2a57cec5c3d1a) @@ -82,7 +82,7 @@ spacing: 100 anchors.centerIn: parent Row { id : _bloodFlowRow - spacing: 100 + spacing: 50 anchors.horizontalCenter: parent.horizontalCenter TextRect { id: _bloodFlowTextRect anchors.top: parent.top @@ -96,21 +96,26 @@ Slider { id : _bloodFlowSlider anchors.verticalCenter: parent.verticalCenter width : 600 - height : 5 minimum : Variables.bloodFlowMin maximum : Variables.bloodFlowMax + decimal : Variables.bloodFlowPrecision unit : Variables.unitTextFlowRate step : Variables.bloodFlowResolution ticks : true } + SliderArrows{ id:_bloodFlowSliderArrows + anchors.verticalCenter : _bloodFlowSlider.verticalCenter + onIncrementValue : _bloodFlowSlider.incrementValue(true) + onDecrementValue : _bloodFlowSlider.decrementValue(true) + } } Line { anchors.horizontalCenter: parent.horizontalCenter length : _root.width - 100 color : Colors.separatorLine } Row { id : _dialysateInletFlowRow - spacing: 100 + spacing: 50 anchors.horizontalCenter: parent.horizontalCenter TextRect { id: _dialysateInletFlowTextRect anchors.top: parent.top @@ -124,13 +129,17 @@ Slider { id : _dialysateFlowSlider anchors.verticalCenter: parent.verticalCenter width : 600 - height : 5 minimum : vTreatmentRanges.treatmentRanges_Dialysate_Flow_Min maximum : vTreatmentRanges.treatmentRanges_Dialysate_Flow_Max unit : Variables.unitTextFlowRate step : Variables.dialysateFlowResolution ticks : true } + SliderArrows{ id:_dialysateFlowSliderArrows + anchors.verticalCenter : _dialysateFlowSlider.verticalCenter + onIncrementValue : _dialysateFlowSlider.incrementValue(true) + onDecrementValue : _dialysateFlowSlider.decrementValue(true) + } } } }