13
0

Apply automation fix patch from torbenh.

git-svn-id: svn://localhost/ardour2/branches/3.0@3847 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2008-10-03 02:19:12 +00:00
parent 620475f9ac
commit 612850c41b
2 changed files with 3 additions and 2 deletions

View File

@ -53,7 +53,7 @@ void
AutomationControl::set_value(float value)
{
bool to_list = _list && _session.transport_stopped()
&& ((AutomationList*)_list.get())->automation_playback();
&& ((AutomationList*)_list.get())->automation_write();
Control::set_float(value, to_list, _session.transport_frame());

View File

@ -2993,8 +2993,9 @@ Route::automation_snapshot (nframes_t now, bool force)
return;
}
IO::automation_snapshot (now, force);
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
// IO::automation_snapshot (now, force); ?
(*i)->automation_snapshot (now, force);
}
}