Index: sources/gui/qml/components/Slider.qml =================================================================== diff -u -ra9b3b248a786b93bf6dfd8c29946d708d18dde9a -rf27e2cd32b03ade797a71947a8c9199c5e5a07e1 --- sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision a9b3b248a786b93bf6dfd8c29946d708d18dde9a) +++ sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision f27e2cd32b03ade797a71947a8c9199c5e5a07e1) @@ -189,7 +189,9 @@ let mMinimum = Number(_root.minimum.toFixed(decimal)) let mMaximum = Number(_root.maximum.toFixed(decimal)) - if(x < _handler.width) { + // the center of the handler is aligned on the snap point and half width shall be used to set as min not the entire width. + // also half of the hadler is out of slider min position when set on min, which proves the same as above. + if(x < ( _handler.width / 2 ) ) { // The outside of the slider, lower bound case return mMinimum }