Index: sources/gui/qml/components/RangeBar.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r7b4219600ec64c2860113225ced0b5fc839b8ad2 --- sources/gui/qml/components/RangeBar.qml (.../RangeBar.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/components/RangeBar.qml (.../RangeBar.qml) (revision 7b4219600ec64c2860113225ced0b5fc839b8ad2) @@ -44,6 +44,9 @@ property bool lowerTextHorizontalCenter: true property bool upperTextHorizontalCenter: true + isRoundedEnds: false + hasBorder : false + RangeRect { id: _rangeRect color: "red" x : ((parent.width * (lowerBound - parent.minimum)) / (parent.maximum - parent.minimum)) @@ -61,6 +64,9 @@ minText.anchors.leftMargin : lowerTextHorizontalCenter ? -minText.width / 2 : 0 maxText.anchors.rightMargin : upperTextHorizontalCenter ? -maxText.width / 2 : 0 + isRoundedEnds : false + hasBorder : false + RangeMarker { id: _rangeMarkerLowerBound decimal : _root.decimal text.visible: false