diff --git a/src/drivers/Qt/TasEditor/TasEditorWindow.cpp b/src/drivers/Qt/TasEditor/TasEditorWindow.cpp index b7ded727..9ccea1f7 100644 --- a/src/drivers/Qt/TasEditor/TasEditorWindow.cpp +++ b/src/drivers/Qt/TasEditor/TasEditorWindow.cpp @@ -4862,7 +4862,7 @@ void QPianoRoll::wheelEvent(QWheelEvent *event) { if (zDelta > 0) { - ofs += zDelta; + ofs += (zDelta*6); if (ofs > maxLineOffset) { @@ -4872,7 +4872,7 @@ void QPianoRoll::wheelEvent(QWheelEvent *event) } else if (zDelta < 0) { - ofs += zDelta; + ofs += (zDelta*6); if (ofs < 0) {