wheel increment by stepsize

This commit is contained in:
Uwe Rathmann 2020-09-21 15:03:12 +02:00
parent 44cdbbeba1
commit db9916d4b9

View File

@ -204,7 +204,7 @@ void QskBoundedInput::wheelEvent( QWheelEvent* event )
#endif #endif
const int steps = wheelDelta / QWheelEvent::DefaultDeltasPerStep; const int steps = wheelDelta / QWheelEvent::DefaultDeltasPerStep;
increment( steps ); increment( steps * m_stepSize );
} }
#endif #endif