13
0

no automation line event stuff for velocity tracks (for now)

This commit is contained in:
Paul Davis 2023-06-27 09:42:14 -06:00
parent e6b4d38e52
commit 294de8d64f

View File

@ -374,6 +374,13 @@ Editor::canvas_stream_view_event (GdkEvent *event, ArdourCanvas::Item* item, Rou
bool
Editor::canvas_automation_track_event (GdkEvent *event, ArdourCanvas::Item* item, AutomationTimeAxisView *atv)
{
if (atv->parameter().type() == MidiVelocityAutomation) {
/* no event handling for velocity tracks until we can make the
automation control affect note velocity.
*/
return false;
}
bool ret = false;
switch (event->type) {