mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
don't swallow left/right scroll events in a midi region view when in internal edit mode, fixes #4555
git-svn-id: svn://localhost/ardour2/branches/3.0@12822 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
3287d5534d
commit
e1bb03bba4
1 changed files with 4 additions and 0 deletions
|
|
@ -680,7 +680,11 @@ MidiRegionView::scroll (GdkEventScroll* ev)
|
|||
change_velocities (true, fine, false, together);
|
||||
} else if (ev->direction == GDK_SCROLL_DOWN) {
|
||||
change_velocities (false, fine, false, together);
|
||||
} else {
|
||||
/* left, right: we don't use them */
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue