summaryrefslogtreecommitdiff
path: root/gtk2_ardour/send_ui.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/send_ui.cc')
-rw-r--r--gtk2_ardour/send_ui.cc5
1 files changed, 4 insertions, 1 deletions
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<Send> 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()));