Index: sources/gui/qml/components/RangeRect.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r839893734937449efb6e7c31787d2c44515b69af --- sources/gui/qml/components/RangeRect.qml (.../RangeRect.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/components/RangeRect.qml (.../RangeRect.qml) (revision 839893734937449efb6e7c31787d2c44515b69af) @@ -42,13 +42,15 @@ property string unit : "" property real touchMargin: 0 + property bool isRoundedEnds : false + property bool hasBorder : false - width : parent.width - height : parent.height - color : Colors.backgroundRangeRect - radius : Variables.rangeRectRadius + radius : isRoundedEnds ? Variables.rangeRectRadiusRounded : Variables.rangeRectRadius + border.width: hasBorder ? Variables.rangeRectBorderWidth : 0 + border.color: Colors.rangeRectBorderColor + Text { id: _textMinimum visible : false