Index: sources/gui/qml/components/Slider.qml =================================================================== diff -u -r34471900489397f483e052870ddc46059cef49fb -r95c671ab7037af055db551456a719ff67bf10262 --- sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision 34471900489397f483e052870ddc46059cef49fb) +++ sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision 95c671ab7037af055db551456a719ff67bf10262) @@ -39,6 +39,16 @@ minimum : 0 maximum : 0 + // real-time bound change should effect the current set value + onMinimumChanged: { + if (value < minimum ) + value = minimum + } + onMaximumChanged: { + if (value > maximum ) + value = maximum + } + minText { visible : true anchors.topMargin: Variables.sliderTextMargin