From 76a8f059547c9e6e7fa4f90534922063b198c9cf Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Thu, 2 May 2024 09:10:22 -0500 Subject: [PATCH] LT: pack the Master bus on the left side of mixer --- gtk2_ardour/mixer_ui.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/mixer_ui.cc b/gtk2_ardour/mixer_ui.cc index 263fc5a993..8dfebe7d56 100644 --- a/gtk2_ardour/mixer_ui.cc +++ b/gtk2_ardour/mixer_ui.cc @@ -387,7 +387,10 @@ Mixer_UI::Mixer_UI () _content.pack_start (list_hpane, true, true); } else { - _content.pack_start (scroller, true, true); + HBox *box = manage (new HBox()); + box->pack_start (out_packer, false, false); + box->pack_start (scroller, true, true); + _content.pack_start(*box); } update_title ();