From 2b3bfd393fa0e16a4d499f095c3679bfdd14a582 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Mon, 6 May 2024 16:42:07 -0500 Subject: [PATCH] T: TL needs only Rec, Mute, Solo in the track header. 3x1 --- gtk2_ardour/route_time_axis.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc index 3485183a45..51ada2d1f2 100644 --- a/gtk2_ardour/route_time_axis.cc +++ b/gtk2_ardour/route_time_axis.cc @@ -188,13 +188,11 @@ RouteTimeAxisView::set_route (std::shared_ptr rt) controls_table.attach (number_label, 0, 1, 0, 2, Gtk::SHRINK, Gtk::SHRINK, 0, 0); controls_table.attach (*rec_enable_button, 3, 4, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0); - controls_table.attach (*monitor_input_button, 4, 5, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0); - controls_table.attach (*mute_button, 3, 4, 1, 2, Gtk::SHRINK, Gtk::SHRINK, 0, 0); - controls_table.attach (*solo_button, 4, 5, 1, 2, Gtk::SHRINK, Gtk::SHRINK, 0, 0); + controls_table.attach (*mute_button, 4, 5, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0); + controls_table.attach (*solo_button, 5, 6, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0); controls_button_size_group->add_widget(*mute_button); controls_button_size_group->add_widget(*solo_button); - controls_button_size_group->add_widget(*monitor_input_button); controls_button_size_group->add_widget(*rec_enable_button); controls_meters_size_group->add_widget (gm.get_level_meter());