From 0708cdb6b4a3868361cbe960787af8c357d69ea2 Mon Sep 17 00:00:00 2001 From: Iurie Nistor Date: Fri, 10 Jul 2020 18:18:05 +0300 Subject: [PATCH] Show name when audio track is inactive --- gtk2_ardour/audio_time_axis.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk2_ardour/audio_time_axis.cc b/gtk2_ardour/audio_time_axis.cc index aa09bb4050..12f3cea0bb 100644 --- a/gtk2_ardour/audio_time_axis.cc +++ b/gtk2_ardour/audio_time_axis.cc @@ -296,6 +296,7 @@ AudioTimeAxisView::route_active_changed () controls_table.hide(); inactive_table.show(); RouteTimeAxisView::hide_all_automation(); + name_label.show(); } else { inactive_table.hide(); controls_table.show();