Index: sources/gui/qml/components/RangeSlider.qml =================================================================== diff -u -r8a5dbf556a66524fbe4b60ac1573182a0bd27617 -rfc329c788fe9453983072bee937ccbc95b4ed6e4 --- sources/gui/qml/components/RangeSlider.qml (.../RangeSlider.qml) (revision 8a5dbf556a66524fbe4b60ac1573182a0bd27617) +++ sources/gui/qml/components/RangeSlider.qml (.../RangeSlider.qml) (revision fc329c788fe9453983072bee937ccbc95b4ed6e4) @@ -46,10 +46,10 @@ property bool minVerticalEdgeVisible: true property int gapValue : 0 ///< the gap between minValue and maxValue so the minValue shall always be gap value less than maxValue and vise versa. - property real minValueLowerBound : _root.minimum ///< min value can't be lower than this value - property real minValueUpperBound : _root.maximum ///< min value can't be higher than this value - property real maxValueLowerBound : _root.minimum ///< max value can't be lower than this value - property real maxValueUpperBound : _root.maximum ///< max value can't be higher than this value + property real minValueLowerBound : _root.minimum ///< min value cannot be lower than this value + property real minValueUpperBound : _root.maximum ///< min value cannot be higher than this value + property real maxValueLowerBound : _root.minimum ///< max value cannot be lower than this value + property real maxValueUpperBound : _root.maximum ///< max value cannot be higher than this value property int curHandler : RangeSlider.HandlerOption.None ///< current active slider handler