Index: sources/gui/qml/pages/treatment/sections/TreatmentPressureComponent.qml =================================================================== diff -u -r622129c7f05af77f361d7e055eb7bcccaba1a0f9 -r526fb054edbbeebdcce33ca630ae08ba04067fac --- sources/gui/qml/pages/treatment/sections/TreatmentPressureComponent.qml (.../TreatmentPressureComponent.qml) (revision 622129c7f05af77f361d7e055eb7bcccaba1a0f9) +++ sources/gui/qml/pages/treatment/sections/TreatmentPressureComponent.qml (.../TreatmentPressureComponent.qml) (revision 526fb054edbbeebdcce33ca630ae08ba04067fac) @@ -17,7 +17,7 @@ property color barColor : Colors.backgroundRangeRect property bool valueOutRangeNotify : true - property int barHeight : 25 + property int barHeight : 20 property int titleSize : 35 property int valueSize : 60 @@ -49,8 +49,10 @@ RangeBar { id: _rangeBar height : barHeight width : _row.width * 0.60 + anchors.verticalCenter: parent.verticalCenter rangebar.color : barColor markerOutRangeNotify: _root.valueOutRangeNotify color : valueOutRangeNotify ? Colors.backgroundRangeRect : rangebar.color + markerBoundColor : Colors.rangeMarker } }