summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-09-14 00:41:33 +0000
committerCarl Hetherington <carl@carlh.net>2010-09-14 00:41:33 +0000
commit42acfc365f20762042d431f5d75c4a0d32b60b2b (patch)
tree88b09d7326734043b05c0691149435b661e8488d
parent4ce12d75e184181d8314cd039e8da512dffb8fa2 (diff)
Just flush processors on stop (when plugins-stop-on-transport is true) rather than doing deactivate/activate. Should fix #3445.
git-svn-id: svn://localhost/ardour2/branches/3.0@7770 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--libs/ardour/route.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 9ad36b90fd..cda4fa8e1e 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -2632,8 +2632,6 @@ Route::handle_transport_stopped (bool /*abort_ignored*/, bool did_locate, bool c
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
if (Config->get_plugins_stop_with_transport() && can_flush_processors) {
- (*i)->deactivate ();
- (*i)->activate ();
(*i)->flush ();
}