Index: sources/gui/qml/components/Slider.qml =================================================================== diff -u -r074b32b5cc08f41f2d9ce0d021f2151b76bba5ad -rf8321d4b6a5489f797122321a4821b4eeaaa50cb --- sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision 074b32b5cc08f41f2d9ce0d021f2151b76bba5ad) +++ sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision f8321d4b6a5489f797122321a4821b4eeaaa50cb) @@ -107,7 +107,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 @@ -135,6 +135,9 @@ setValue(vMouseEvent.x) progressRectClicked() } + onPressChanged: { + _root.pressChanged() + } } // used loader for performance since it may not always be required.