13
0

Pack the editor-mixer-strip in Tabbable's strip ebox

This commit is contained in:
Ben Loftis 2024-10-29 13:17:39 -05:00 committed by Robin Gareus
parent 6e6119c1eb
commit 451facf7d4
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -137,8 +137,7 @@ Editor::show_editor_mixer (bool yn)
} }
if (current_mixer_strip && current_mixer_strip->get_parent() == 0) { if (current_mixer_strip && current_mixer_strip->get_parent() == 0) {
content_hbox.pack_start (*current_mixer_strip, Gtk::PACK_SHRINK ); content_att_left.add (*current_mixer_strip);
content_hbox.reorder_child (*current_mixer_strip, 0);
current_mixer_strip->show (); current_mixer_strip->show ();
} }
@ -151,7 +150,7 @@ Editor::show_editor_mixer (bool yn)
if (current_mixer_strip) { if (current_mixer_strip) {
if (current_mixer_strip->get_parent() != 0) { if (current_mixer_strip->get_parent() != 0) {
content_hbox.remove (*current_mixer_strip); content_att_left.remove ();
} }
} }
} }