add a new packer to the mixer, to hold vca master faders (if any)

This commit is contained in:
Paul Davis 2016-01-25 15:59:36 -05:00
parent 99b0712be4
commit c5ba2d1eb6
2 changed files with 3 additions and 0 deletions

View file

@ -241,6 +241,7 @@ Mixer_UI::Mixer_UI ()
list_vpacker.pack_start (rhs_pane2, true, true);
global_hpacker.pack_start (scroller, true, true);
global_hpacker.pack_start (vca_packer, false, false);
global_hpacker.pack_start (out_packer, false, false);
list_hpane.pack1(list_vpacker, false, true);
@ -280,6 +281,7 @@ Mixer_UI::Mixer_UI ()
rhs_pane1.show();
rhs_pane2.show();
strip_packer.show();
vca_packer.show();
out_packer.show();
list_hpane.show();
group_display.show();

View file

@ -141,6 +141,7 @@ class Mixer_UI : public Gtkmm2ext::Tabbable, public PBD::ScopedConnectionList, p
Gtk::VPaned rhs_pane1;
Gtk::VPaned rhs_pane2;
Gtk::HBox strip_packer;
Gtk::HBox vca_packer;
Gtk::HBox out_packer;
Gtk::HPaned list_hpane;