Index: sources/gui/qml/components/Slider.qml =================================================================== diff -u -rcd7de5f6d239a11615ba8c6c03339a10996486ca -rf148379112a69d1c52027f2667e95f3f96d948ad --- sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision cd7de5f6d239a11615ba8c6c03339a10996486ca) +++ sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision f148379112a69d1c52027f2667e95f3f96d948ad) @@ -62,7 +62,7 @@ if ( x > width ) { value = maximum } else - if (step === 1) { // only for performance othewise formula works perfectly fine for any step. + if (step === 1) { // only for performance otherwise formula works perfectly fine for any step. value = getPosition(x) } else { value = Math.round((getPosition(x) - minimum) / step) * step + minimum @@ -75,7 +75,6 @@ minimum : parent.minimum maximum : parent.maximum - value : parent.value // propagation is not working on drag onDragged: {