summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
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) {