diff --git a/gtk2_ardour/automation_time_axis.cc b/gtk2_ardour/automation_time_axis.cc index 767fe49c9b..d6b5ea2ff6 100644 --- a/gtk2_ardour/automation_time_axis.cc +++ b/gtk2_ardour/automation_time_axis.cc @@ -1236,6 +1236,10 @@ AutomationTimeAxisView::color () const void AutomationTimeAxisView::set_velocity_mode (VelocityMode vm, bool force) { + if (_parameter.type() != MidiVelocityAutomation) { + return; + } + if (vm == _velocity_mode && !force) { return; }