Index: sources/gui/qml/components/RangeSlider.qml =================================================================== diff -u -r74fa9686a916c53d1549fa3733d200edb9df9d3b -r874a982c1983fea20307a031e09f90a91ca34d75 --- sources/gui/qml/components/RangeSlider.qml (.../RangeSlider.qml) (revision 74fa9686a916c53d1549fa3733d200edb9df9d3b) +++ sources/gui/qml/components/RangeSlider.qml (.../RangeSlider.qml) (revision 874a982c1983fea20307a031e09f90a91ca34d75) @@ -74,7 +74,8 @@ property bool isRoundedEnds : true property bool hasBorder : true - property color borderColor : Colors.borderDisableButton + property color disabledBorderColor : Colors.borderDisableButton + property color enabledBorderColor : Colors.borderButton onHasAdjustChanged : { setAdjusted() @@ -97,7 +98,7 @@ radius : _root.isRoundedEnds ? (height/2) : Variables.rangeRectRadius border.width: _root.hasBorder ? Variables.rangeRectBorderWidth : 0 - border.color: (_root.minAdjusted && _root.maxAdjusted) ? Colors.borderButton : Colors.borderDisableButton + border.color: (_root.minAdjusted && _root.maxAdjusted) ? enabledBorderColor : disabledBorderColor minimum : 0 maximum : 0