From 49c9569039f9c7d51e969affa447b270de9e60da Mon Sep 17 00:00:00 2001 From: "Julien \"_FrnchFrgg_\" RIVAUD" Date: Sat, 9 Jul 2016 02:17:00 +0200 Subject: [PATCH] =?UTF-8?q?Make=20MIDI=C2=A0busses=20possible=20targets=20?= =?UTF-8?q?of=20internal=20sends?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The session only added an internal return to new audio busses, and so only those were proposed in the "New Aux Send" list. Also add the return to new midi busses, now that internal sends know how to deal with midi. --- libs/ardour/session.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 767971fe72..bf8291e4b0 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -2580,6 +2580,7 @@ Session::new_midi_route (RouteGroup* route_group, uint32_t how_many, string name route_group->add (bus); } + bus->add_internal_return (); ret.push_back (bus); }