Remove erroneous refusal to create aux sends on MIDI tracks, which may have audio...
authorCarl Hetherington <carl@carlh.net>
Fri, 8 Jun 2012 14:29:14 +0000 (14:29 +0000)
committerCarl Hetherington <carl@carlh.net>
Fri, 8 Jun 2012 14:29:14 +0000 (14:29 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@12609 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/processor_box.cc

index b161a1866320c31f373fbd2628eea696b91f7761..fee6f6d5030d171c7b67d2a6d29da7038665a591 100644 (file)
@@ -44,7 +44,6 @@
 #include "ardour/audioengine.h"
 #include "ardour/internal_return.h"
 #include "ardour/internal_send.h"
-#include "ardour/midi_track.h"
 #include "ardour/plugin_insert.h"
 #include "ardour/port_insert.h"
 #include "ardour/profile.h"
@@ -859,10 +858,8 @@ ProcessorBox::build_possible_aux_menu ()
 {
        boost::shared_ptr<RouteList> rl = _session->get_routes_with_internal_returns();
 
-       if (rl->empty() || boost::dynamic_pointer_cast<MidiTrack> (_route)) {
-               /* No aux sends if there are no busses, or if this route is a MIDI track
-                  (one day, but not now ...)
-               */
+       if (rl->empty()) {
+               /* No aux sends if there are no busses */
                return 0;
        }