From c74c3b741e819e953b97d14ef61eed41395287d6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 4 Dec 2011 23:58:36 +0000 Subject: [PATCH] do not show panner GUI in external send UI, to avoid confusion (#4531) git-svn-id: svn://localhost/ardour2/branches/3.0@10896 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/send_ui.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/send_ui.cc b/gtk2_ardour/send_ui.cc index a000bfcaa9..627fe531f6 100644 --- a/gtk2_ardour/send_ui.cc +++ b/gtk2_ardour/send_ui.cc @@ -53,7 +53,10 @@ SendUI::SendUI (Gtk::Window* parent, boost::shared_ptr s, Session* session _vbox.set_border_width (5); _vbox.pack_start (_hbox, false, false, false); - _vbox.pack_start (_panners, false, false); + // until sends have their own Pannable, don't show this + // because it controls the Route Pannable which confuses + // users (among others) + // _vbox.pack_start (_panners, false, false); io = manage (new IOSelector (parent, session, s->output()));