do not show panner GUI in external send UI, to avoid confusion (#4531)
authorPaul Davis <paul@linuxaudiosystems.com>
Sun, 4 Dec 2011 23:58:36 +0000 (23:58 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Sun, 4 Dec 2011 23:58:36 +0000 (23:58 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@10896 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/send_ui.cc

index a000bfcaa952a98a3ec7ca047c4394f88b3f52c6..627fe531f68e0dbcf6fb21d2ca1ea0e41e3b2590 100644 (file)
@@ -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()));