diff --git a/src/controls/QskBoundedInput.cpp b/src/controls/QskBoundedInput.cpp index 23cd98a1..9f882e42 100644 --- a/src/controls/QskBoundedInput.cpp +++ b/src/controls/QskBoundedInput.cpp @@ -204,7 +204,7 @@ void QskBoundedInput::wheelEvent( QWheelEvent* event ) #endif const int steps = wheelDelta / QWheelEvent::DefaultDeltasPerStep; - increment( steps ); + increment( steps * m_stepSize ); } #endif