summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2020-03-31 01:09:10 +0200
committerRobin Gareus <robin@gareus.org>2020-03-31 01:37:38 +0200
commit8fced29372cd637bd6b5142b4945d86a9675c483 (patch)
treec0d54e8848f537c03a53f02971c795f823c3687b /gtk2_ardour/time_axis_view.cc
parenteb6d718305d073bf581939c5bd77c202a5138ec5 (diff)
Visibility fixes for detached editor and Show-Sends buttons
Detaching the editor would cause the inactive_name labels and to mixer-strip elements to appear (due to show_all).
Diffstat (limited to 'gtk2_ardour/time_axis_view.cc')
-rw-r--r--gtk2_ardour/time_axis_view.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk2_ardour/time_axis_view.cc b/gtk2_ardour/time_axis_view.cc
index f6d6f4b00c..951fe0d899 100644
--- a/gtk2_ardour/time_axis_view.cc
+++ b/gtk2_ardour/time_axis_view.cc
@@ -189,6 +189,7 @@ TimeAxisView::TimeAxisView (ARDOUR::Session* sess, PublicEditor& ed, TimeAxisVie
controls_table.show_all ();
controls_table.set_no_show_all ();
+ inactive_table.set_no_show_all ();
inactive_table.set_border_width (4); //try to match the offset of the label on an "active" track
inactive_table.attach (inactive_label, 1, 2, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::SHRINK, 0, 0);
controls_vbox.pack_start (inactive_table, false, false);