From 0965463c191126fd45352ed7e3d4f187b5271017 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 22 Dec 2015 19:08:19 +0100 Subject: [PATCH] tweak packaging of plugin-hostlist --- gtk2_ardour/mixer_ui.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gtk2_ardour/mixer_ui.cc b/gtk2_ardour/mixer_ui.cc index b86b7baadd..c12dfb549d 100644 --- a/gtk2_ardour/mixer_ui.cc +++ b/gtk2_ardour/mixer_ui.cc @@ -214,8 +214,8 @@ Mixer_UI::Mixer_UI () rhs_pane1.pack1 (track_display_frame); rhs_pane1.pack2 (group_display_frame); - rhs_pane2.pack1 (rhs_pane1); - rhs_pane2.pack2 (favorite_plugins_frame); + rhs_pane2.pack1 (favorite_plugins_frame, false, true); + rhs_pane2.pack2 (rhs_pane1); list_vpacker.pack_start (rhs_pane2, true, true); @@ -1804,7 +1804,7 @@ Mixer_UI::pane_allocation_handler (Allocation&, Gtk::Paned* which) } if (!geometry || (prop = geometry->property("mixer-rhs-pane1-pos")) == 0) { - pos = height / 3; + pos = height / 2; snprintf (buf, sizeof(buf), "%d", pos); } else { pos = atoi (prop->value()); @@ -1820,7 +1820,7 @@ Mixer_UI::pane_allocation_handler (Allocation&, Gtk::Paned* which) } if (!geometry || (prop = geometry->property("mixer-rhs-pane2-pos")) == 0) { - pos = 2 * height / 3; + pos = height / 4; snprintf (buf, sizeof(buf), "%d", pos); } else { pos = atoi (prop->value());