Index: sources/gui/qml/components/Slider.qml =================================================================== diff -u -r9f63306043e9a184ce3e71c573ef0a15d8644f95 -r328e186fe0f8b6fe4dbe0e14bac6a302e37edb76 --- sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision 9f63306043e9a184ce3e71c573ef0a15d8644f95) +++ sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision 328e186fe0f8b6fe4dbe0e14bac6a302e37edb76) @@ -106,7 +106,7 @@ value = getValueOfX(x) - if ( step === 1 ) { value = parseInt(value); return; } + if ( step === 1 ) { /* keep the value and return */ return; } var start = 0 if ( ! stepSnap ) start = minimum