Index: sources/gui/qml/components/RangeRect.qml =================================================================== diff -u -r828e0b187e2fa3f75d769938bede41ef34683493 -r8d7f8d2ac6620e92ab3cd239d7d8641113ea3e53 --- sources/gui/qml/components/RangeRect.qml (.../RangeRect.qml) (revision 828e0b187e2fa3f75d769938bede41ef34683493) +++ sources/gui/qml/components/RangeRect.qml (.../RangeRect.qml) (revision 8d7f8d2ac6620e92ab3cd239d7d8641113ea3e53) @@ -45,6 +45,7 @@ property real leftRightTouchMargin: 0 property bool isRoundedEnds : true property bool hasBorder : true + property color borderColor : Colors.sliderBorderInactive function adjustOverlap() { // Due to font size not being fixed and be different depending on text, @@ -70,7 +71,7 @@ radius : isRoundedEnds ? (height/2) : Variables.rangeRectRadius border.width: hasBorder ? Variables.rangeRectBorderWidth : 0 - border.color: Colors.rangeRectBorderColor + border.color: borderColor Text { id: _textMinimum visible : false