Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentFlow.qml =================================================================== diff -u -r7b4219600ec64c2860113225ced0b5fc839b8ad2 -rc52701259341870bc9a436fc87f84f23b340c09c --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentFlow.qml (.../TreatmentAdjustmentFlow.qml) (revision 7b4219600ec64c2860113225ced0b5fc839b8ad2) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentFlow.qml (.../TreatmentAdjustmentFlow.qml) (revision c52701259341870bc9a436fc87f84f23b340c09c) @@ -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 @@ -103,14 +103,20 @@ step : Variables.bloodFlowResolution ticks : true } + SliderArrows{ id:_bloodFlowSliderArrows + visible : true + 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 @@ -130,6 +136,12 @@ step : Variables.dialysateFlowResolution ticks : true } + SliderArrows{ id:_dialysateFlowSliderArrows + visible : true + anchors.verticalCenter : _dialysateFlowSlider.verticalCenter + onIncrementValue : _dialysateFlowSlider.incrementValue(true) + onDecrementValue : _dialysateFlowSlider.decrementValue(true) + } } } }