mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
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:
parent
620475f9ac
commit
612850c41b
2 changed files with 3 additions and 2 deletions
|
|
@ -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());
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue