Index: sources/gui/qml/components/RangeBar.qml =================================================================== diff -u -r23f8a6036e22f80c3c5fd2834a2980bb62d2a34d -rbea36be2766046e63c4e82539a630b5cee7ce1c6 --- sources/gui/qml/components/RangeBar.qml (.../RangeBar.qml) (revision 23f8a6036e22f80c3c5fd2834a2980bb62d2a34d) +++ sources/gui/qml/components/RangeBar.qml (.../RangeBar.qml) (revision bea36be2766046e63c4e82539a630b5cee7ce1c6) @@ -36,9 +36,12 @@ property int val : isOutLower ? min : isOutUpper ? max : value property int min : minimum property int max : maximum - property bool isOutLower : value < min + property bool isOutLower : value < min // value out of min/max range property bool isOutUpper : value > max - property bool isOutRange : isOutLower || isOutUpper + + property bool isUnderBounds : value < lowerBound // value out of lower/ upper bounds + property bool isOverBounds : value > upperBound + property bool isOutRange : isOverBounds || isUnderBounds } property int markerHeight: Variables.rangeMarkerHeightMidle @@ -95,7 +98,6 @@ x : ((parent.width * (_private.val - _private.min)) / (_private.max - _private.min)) text.visible: true text.font.pixelSize: _root.markerFontSize - hasHandle : true height : markerHeight color : markerColor valueOnTop : true