From 22d0b068891d21e26db0081c2fc468ee8e60dced Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 25 Feb 2016 13:12:09 -0500 Subject: [PATCH] fix packing of "outpacker" in mixer view --- gtk2_ardour/mixer_ui.cc | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/gtk2_ardour/mixer_ui.cc b/gtk2_ardour/mixer_ui.cc index fc2af3265d..a7268c9987 100644 --- a/gtk2_ardour/mixer_ui.cc +++ b/gtk2_ardour/mixer_ui.cc @@ -229,13 +229,7 @@ Mixer_UI::Mixer_UI () list_vpacker.pack_start (rhs_pane2, true, true); global_hpacker.pack_start (scroller, true, true); - -#ifdef __APPLE__ - /* current gtk-quartz has dirty updates on borders like this one */ - global_hpacker.pack_start (out_packer, false, false, 0); -#else - global_hpacker.pack_start (out_packer, false, false, 12); -#endif + global_hpacker.pack_start (out_packer, false, false); list_hpane.pack1(list_vpacker, false, true); list_hpane.pack2(global_hpacker, true, false);