From 451facf7d42a50b7e4b01180a433090fdce1a54c Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Tue, 29 Oct 2024 13:17:39 -0500 Subject: [PATCH] Pack the editor-mixer-strip in Tabbable's strip ebox --- gtk2_ardour/editor_mixer.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gtk2_ardour/editor_mixer.cc b/gtk2_ardour/editor_mixer.cc index 3c871cdc95..4e58dafe0d 100644 --- a/gtk2_ardour/editor_mixer.cc +++ b/gtk2_ardour/editor_mixer.cc @@ -137,8 +137,7 @@ Editor::show_editor_mixer (bool yn) } if (current_mixer_strip && current_mixer_strip->get_parent() == 0) { - content_hbox.pack_start (*current_mixer_strip, Gtk::PACK_SHRINK ); - content_hbox.reorder_child (*current_mixer_strip, 0); + content_att_left.add (*current_mixer_strip); current_mixer_strip->show (); } @@ -151,7 +150,7 @@ Editor::show_editor_mixer (bool yn) if (current_mixer_strip) { if (current_mixer_strip->get_parent() != 0) { - content_hbox.remove (*current_mixer_strip); + content_att_left.remove (); } } }