From 038d292c3fb53718f1a580a0f0ff54c7a0aa8e23 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 30 Jun 2014 03:31:58 +0200 Subject: [PATCH] fix issue with track-deletion when the monitoring section is used. --- libs/ardour/session.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 121df3130c..eba11a457b 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -2603,6 +2603,13 @@ Session::remove_route (boost::shared_ptr route) } } + /* if the monitoring section had a pointer to this route, remove it */ + if (_monitor_out && !route->is_master() && !route->is_monitor()) { + Glib::Threads::Mutex::Lock lm (AudioEngine::instance()->process_lock ()); + PBD::Unwinder uw (ignore_route_processor_changes, true); + route->remove_aux_or_listen (_monitor_out); + } + boost::shared_ptr mt = boost::dynamic_pointer_cast (route); if (mt && mt->step_editing()) { if (_step_editors > 0) {