13
0
Fork 0

T: fix mixer-strip height packing; disable vertical scroller

This commit is contained in:
Ben Loftis 2024-05-06 16:41:32 -05:00
parent ae302efecd
commit 1c890b12a0
1 changed files with 2 additions and 2 deletions

View File

@ -207,7 +207,7 @@ Mixer_UI::Mixer_UI ()
strip_group_box.signal_scroll_event().connect (sigc::mem_fun (*this, &Mixer_UI::on_scroll_event), false);
scroller.add (strip_group_box);
scroller.set_policy (Gtk::POLICY_ALWAYS, Gtk::POLICY_AUTOMATIC);
scroller.set_policy (Gtk::POLICY_ALWAYS, Gtk::POLICY_NEVER);
setup_track_display ();
@ -400,7 +400,7 @@ Mixer_UI::Mixer_UI ()
HBox *box = manage (new HBox());
box->pack_start (out_packer, false, false);
box->pack_start (scroller, true, true);
_content.pack_start(*box);
_content.pack_start(*box, false, false);
}
update_title ();