From f31f9a09da55f622030a90ed876dd3c8c96881cb Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 5 May 2020 04:22:53 +0200 Subject: Fix inactive track header label display Since 8fced29372 introduced no_show_all(), the packed widgets need to be explicitly displayed. --- gtk2_ardour/audio_time_axis.cc | 2 +- gtk2_ardour/route_time_axis.cc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'gtk2_ardour') diff --git a/gtk2_ardour/audio_time_axis.cc b/gtk2_ardour/audio_time_axis.cc index 4b78b33cd6..aa09bb4050 100644 --- a/gtk2_ardour/audio_time_axis.cc +++ b/gtk2_ardour/audio_time_axis.cc @@ -294,7 +294,7 @@ AudioTimeAxisView::route_active_changed () if (!_route->active()) { controls_table.hide(); - inactive_table.show_all(); + inactive_table.show(); RouteTimeAxisView::hide_all_automation(); } else { inactive_table.hide(); diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc index 1a79902a40..7dd8d115ec 100644 --- a/gtk2_ardour/route_time_axis.cc +++ b/gtk2_ardour/route_time_axis.cc @@ -431,6 +431,7 @@ RouteTimeAxisView::label_view () } inactive_label.set_text (string_compose("(%1)", x)); + inactive_label.show (); const int64_t track_number = _route->track_number (); if (track_number == 0) { -- cgit v1.2.3