mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
no automation line event stuff for velocity tracks (for now)
This commit is contained in:
parent
e6b4d38e52
commit
294de8d64f
1 changed files with 7 additions and 0 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue