Hello
I’m trying to create a Spinbox with a Delta of 1 for its slider, with the following settings :
- Min Fractional Digits = 0
- Max Fractional Digits = 0
- Always Uses Delta Snap = true
- Enable Slider = true
- Delta = 1
- Slider Exponent = 1
&
- Minimum Value = 0
- Maximum Value = 100
It works perfectly if the difference between Minimum Value and Maximum Value is 100 or less. But above, it begins to act with a certain pattern, which is
- Actual Delta = (MaximumValue - MinimumValue)/100
And totally ignoring the initial given Delta, except if the inital Delta is still greater than the result above.
So for a diff of 200, my slider move the value 2 by 2, 10 by 10 for a 1000 diff and so on…
Is it intended ? If so, is there any way to still make it move 1 by 1 if a difference between min and max value greater than 100 ?