summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien "_FrnchFrgg_" RIVAUD <frnchfrgg@free.fr>2016-07-09 02:17:00 +0200
committerJulien "_FrnchFrgg_" RIVAUD <frnchfrgg@free.fr>2016-07-09 02:17:00 +0200
commit49c9569039f9c7d51e969affa447b270de9e60da (patch)
tree9a61d97be7d4461b0c0861f86f3692778055948e
parent09c4c513351b04708a2e56e8a2f531840a0aff6a (diff)
Make MIDI busses possible targets of internal sends
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.
-rw-r--r--libs/ardour/session.cc1
1 files changed, 1 insertions, 0 deletions
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);
}