summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_time_axis.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2020-01-20 16:03:22 -0600
committerBen Loftis <ben@harrisonconsoles.com>2020-01-20 16:03:22 -0600
commitd8d737adc4408fd731254aa7e5e09b262358be68 (patch)
tree78604f9fdb808594bbcef64ce57788993aa77474 /gtk2_ardour/audio_time_axis.cc
parent7966d02534e9b78d9233c4f92af5d82436949853 (diff)
Make it more obvious when a track is Inactive
Inactive tracks will now hide all controls and display only the track name in parenthesis. Color-change is not sufficient by itself to distinguish an inactive track from an active one (consider the case of just 2 tracks...)
Diffstat (limited to 'gtk2_ardour/audio_time_axis.cc')
-rw-r--r--gtk2_ardour/audio_time_axis.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/gtk2_ardour/audio_time_axis.cc b/gtk2_ardour/audio_time_axis.cc
index 61c7b25cfc..1e56fbc312 100644
--- a/gtk2_ardour/audio_time_axis.cc
+++ b/gtk2_ardour/audio_time_axis.cc
@@ -290,6 +290,15 @@ void
AudioTimeAxisView::route_active_changed ()
{
update_control_names ();
+
+ if (!_route->active()) {
+ controls_table.hide();
+ inactive_table.show_all();
+ RouteTimeAxisView::hide_all_automation();
+ } else {
+ inactive_table.hide();
+ controls_table.show();
+ }
}
void