From 7be61b0909a10d96e8669542be327865230e8a71 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 13 Nov 2023 22:19:03 +0100 Subject: [PATCH] Fix typo in 69c7db85956 --- gtk2_ardour/track_record_axis.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/track_record_axis.cc b/gtk2_ardour/track_record_axis.cc index a65fcc0023..c0a6c1171a 100644 --- a/gtk2_ardour/track_record_axis.cc +++ b/gtk2_ardour/track_record_axis.cc @@ -162,7 +162,7 @@ TrackRecordAxis::TrackRecordAxis (Session* s, std::shared_ptr rt) _ctrls.attach (_input_button, 3, 4, 0, 1, Gtk::SHRINK, Gtk::FILL, 0, 0); _ctrls.attach (_playlist_button, 4, 5, 0, 1, Gtk::SHRINK, Gtk::FILL, 0, 0); _ctrls.attach (_name_frame, 5, 6, 0, 1, Gtk::FILL, Gtk::FILL, 0, 0); - _ctrls.attach (*monitor_input_button, 7, 7, 0, 1, Gtk::SHRINK, Gtk::FILL, 0, 0); + _ctrls.attach (*monitor_input_button, 6, 7, 0, 1, Gtk::SHRINK, Gtk::FILL, 0, 0); _ctrls.attach (*monitor_disk_button, 7, 8, 0, 1, Gtk::SHRINK, Gtk::FILL, 0, 0); _ctrls.attach (*_level_meter, 8, 9, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0); _ctrls.attach (_number_label, 9, 10, 0, 1, Gtk::SHRINK, Gtk::FILL, 0, 0);