Index: sources/gui/qml/pages/treatment/sections/TreatmentPressureComponent.qml =================================================================== diff -u -r7805806e4370be4d9207872e916f478875bd4ba6 -rdff9d50ebfa80ec99313586e1d48662b72940d24 --- sources/gui/qml/pages/treatment/sections/TreatmentPressureComponent.qml (.../TreatmentPressureComponent.qml) (revision 7805806e4370be4d9207872e916f478875bd4ba6) +++ sources/gui/qml/pages/treatment/sections/TreatmentPressureComponent.qml (.../TreatmentPressureComponent.qml) (revision dff9d50ebfa80ec99313586e1d48662b72940d24) @@ -17,46 +17,51 @@ property color barColor : Colors.backgroundRangeRect property bool valueOutRangeNotify : true - property int barHeight : 20 + property int barHeight : 15 property int titleSize : 35 - property int valueSize : 60 + property int valueSize : 70 property int prevMaximum : _rangeBar.maximum property int prevMinimum : _rangeBar.minimum - spacing: Variables.defaultMargin * 2 + spacing: Variables.defaultMargin Text { id: _title - width : 100 + width : 200 height : 50 color : Colors.pressuresText font { pixelSize : _row.titleSize - weight : Font.DemiBold + weight : Font.Medium } verticalAlignment : Text.AlignVCenter } Text { id: _value - width : 100 + width : 50 height : 50 - text : pressure + text : pressure > 0 ? "+" + pressure : pressure color : Colors.pressuresText font { pixelSize : _row.valueSize weight : Font.Bold } verticalAlignment : Text.AlignVCenter + horizontalAlignment: Text.AlignRight } RangeBar { id: _rangeBar height : barHeight width : _row.width * 0.60 anchors.verticalCenter: parent.verticalCenter + anchors.verticalCenterOffset: Variables.defaultMargin rangebar.color : barColor markerOutRangeNotify: _root.valueOutRangeNotify color : valueOutRangeNotify ? Colors.backgroundRangeRect : rangebar.color markerBoundColor : Colors.rangeMarker + marker.text.anchors { + + } } function expandRangeBar() {