13
0

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
This commit is contained in:
Carl Hetherington 2010-09-14 00:41:33 +00:00
parent 4ce12d75e1
commit 42acfc365f

View File

@ -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 ();
}