Skip to content

Commit

Permalink
Update graphboxeslist.cpp
Browse files Browse the repository at this point in the history
Return after ctrl+wheel, no need to update the graph.
  • Loading branch information
rodlie committed Nov 11, 2024
1 parent 3073b68 commit 3a9cc8d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/app/GUI/graphboxeslist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,7 @@ void KeysView::graphWheelEvent(QWheelEvent *event)
#endif
if (event->modifiers() & Qt::ControlModifier) {
emit wheelEventSignal(event);
return;
} else if (event->modifiers() & Qt::ShiftModifier) {
qreal valUnderMouse;
qreal frame;
Expand Down

0 comments on commit 3a9cc8d

Please sign in to comment.