summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-05-05 04:22:53 +0200
committerRobin Gareus <robin@gareus.org>2020-05-05 04:30:24 +0200
commitf31f9a09da55f622030a90ed876dd3c8c96881cb (patch)
tree6fe40f2e13b0ee0a1993968386c2d41876965988 /gtk2_ardour
parent350051569f11efad7a0c0ba8ce9bcbba0203321e (diff)
Fix inactive track header label display
Since 8fced29372 introduced no_show_all(), the packed widgets need to be explicitly displayed.
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/audio_time_axis.cc2
-rw-r--r--gtk2_ardour/route_time_axis.cc1
2 files changed, 2 insertions, 1 deletions
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) {