13
0

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:
Paul Davis 2012-06-22 17:35:41 +00:00
parent 3287d5534d
commit e1bb03bba4

View File

@ -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;
}