From e54e24a7a074e0c6800dbc7b3b6e79bf20471b8a Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 27 Jun 2023 14:07:47 -0600 Subject: [PATCH] no need for two raise-to-top; set_velocity_mode() will do it --- gtk2_ardour/automation_time_axis.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gtk2_ardour/automation_time_axis.cc b/gtk2_ardour/automation_time_axis.cc index d6b5ea2ff6..6478bfea64 100644 --- a/gtk2_ardour/automation_time_axis.cc +++ b/gtk2_ardour/automation_time_axis.cc @@ -135,10 +135,6 @@ AutomationTimeAxisView::AutomationTimeAxisView ( CANVAS_DEBUG_NAME (selection_group, string_compose ("selections for auto %2/%1", _name, strip->name())); CANVAS_DEBUG_NAME (_ghost_group, string_compose ("ghosts for auto %2/%1", _name, strip->name())); - if (_parameter == Evoral::Parameter (MidiVelocityAutomation)) { - _ghost_group->raise_to_top (); - } - if (!have_name_font) { name_font = get_font_for_style (X_("AutomationTrackName")); have_name_font = true;