summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-08-16 14:45:19 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-08-16 14:45:19 +0000
commit4aa84f0513c6cd47561e5bb1d5ec436426fee581 (patch)
tree649320f905e8b4e5f39be3c494c1a47535d856e7
parentf6951c92f04ed17ec98a2d1cd9bcf535ce6f037c (diff)
change packing options within mixer window to fix #4271
git-svn-id: svn://localhost/ardour2/branches/3.0@9999 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/mixer_ui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/mixer_ui.cc b/gtk2_ardour/mixer_ui.cc
index a742ea3139..644a51f880 100644
--- a/gtk2_ardour/mixer_ui.cc
+++ b/gtk2_ardour/mixer_ui.cc
@@ -173,8 +173,8 @@ Mixer_UI::Mixer_UI ()
#else
global_hpacker.pack_start (out_packer, false, false, 12);
#endif
- list_hpane.add1(list_vpacker);
- list_hpane.add2(global_hpacker);
+ list_hpane.pack1(list_vpacker, true, true);
+ list_hpane.pack2(global_hpacker, true, false);
rhs_pane1.signal_size_allocate().connect (sigc::bind (sigc::mem_fun(*this, &Mixer_UI::pane_allocation_handler),
static_cast<Gtk::Paned*> (&rhs_pane1)));