Skip to content
Prev Previous commit
Next Next commit
LcdSpinBox: Reset factor to 2
  • Loading branch information
JohannesLorenz committed May 18, 2020
commit c98bb1914dc755f10955c5b55d2370ab47b7b1d9
2 changes: 1 addition & 1 deletion src/gui/widgets/LcdSpinBox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ void LcdSpinBox::mouseMoveEvent( QMouseEvent* event )
{
if( m_mouseMoving )
{
int dy = 3 * (event->globalY() - m_lastMousePos.y());
int dy = 2 * (event->globalY() - m_lastMousePos.y());
if( event->modifiers() & Qt::ShiftModifier )
dy = qBound( -4, dy/4, 4 );
if( dy > 1 || dy < -1 )
Expand Down