Index: sources/gui/qml/components/RangeSlider.qml =================================================================== diff -u -r8cc93f0b7db1cd820a8774320611dd55cfbee16e -r7c0ce7b22e164bbe37eb47fb56e74cc29a8f4c38 --- sources/gui/qml/components/RangeSlider.qml (.../RangeSlider.qml) (revision 8cc93f0b7db1cd820a8774320611dd55cfbee16e) +++ sources/gui/qml/components/RangeSlider.qml (.../RangeSlider.qml) (revision 7c0ce7b22e164bbe37eb47fb56e74cc29a8f4c38) @@ -169,8 +169,15 @@ else checkLimitsMinValueBounds(value) } else { - if ( minDiff < maxDiff ) checkLimitsMinValueBounds(value) - else checkLimitsMaxValueBounds(value) + // console.debug( minDiff, minValue, value, maxValue, maxDiff ) + if ( minDiff < maxDiff ) { + // if (minDiff > limitGap) return // not sure if it needs but kept it as an idea. + checkLimitsMinValueBounds(value) + } + else { + // if (maxDiff > limitGap) return // not sure if it needs but kept it as an idea. + checkLimitsMaxValueBounds(value) + } } }