QSpinBox with negative step
Is there a way to get QSpinBox to accept a negative step (this is with QT3)? The documentation makes no reference to a limitation on the value of the step, and the arguments tag it as an int, which implies it could be negative or positive.
However, every time I pass it a negative value, it uses only the absolute value (as seen both by observation, as well as calling the lineStep() function to return the value).
I simply want the up arrow to decrement, and the down arrow to increment. Is there a way to do that simply without having to subclass it?
Thanks.