summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/session.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 93293de2b6..2af304161d 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -2382,6 +2382,18 @@ Session::remove_route (shared_ptr<Route> route)
route->input()->disconnect (0);
route->output()->disconnect (0);
+ /* if the route had internal sends sending to it, remove them */
+ if (route->internal_return()) {
+
+ boost::shared_ptr<RouteList> r = routes.reader ();
+ for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
+ boost::shared_ptr<Send> s = (*i)->internal_send_for (route);
+ if (s) {
+ (*i)->remove_processor (s);
+ }
+ }
+ }
+
update_latency_compensation (false, false);
set_dirty();