Index: sources/gui/qml/components/Slider.qml =================================================================== diff -u -r6179111114213085810211b7311c033605c9d448 -r83b9d737cd495b34a7b42f5409962a9442f3b8f4 --- sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision 6179111114213085810211b7311c033605c9d448) +++ sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision 83b9d737cd495b34a7b42f5409962a9442f3b8f4) @@ -1,13 +1,13 @@ /*! * - * Copyright (c) 2020-2023 Diality Inc. - All Rights Reserved. + * Copyright (c) 2020-2024 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file Slider.qml * \author (last) Behrouz NematiPour - * \date (last) 11-Apr-2023 + * \date (last) 26-Jan-2024 * \author (original) Behrouz NematiPour * \date (original) 18-Mar-2020 * @@ -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 }