Index: sources/gui/qml/components/Slider.qml =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -re0d5cb8b80980d2f1b3200f00de9a6e41a4074b1 --- sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision e0d5cb8b80980d2f1b3200f00de9a6e41a4074b1) @@ -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 }