fix up part of the remaining details with automation, so that touch/write over-writes work correctly

git-svn-id: svn://localhost/ardour2/branches/3.0@13041 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-07-14 15:42:10 +00:00
parent 34c6e03ecf
commit c3ccff8d05
6 changed files with 27 additions and 40 deletions

View file

@ -46,12 +46,12 @@ Control::get_double (bool from_list, double frame) const
void
Control::set_double (double value, bool to_list, double frame)
Control::set_double (double value, double frame, bool to_list, bool erase_since_last)
{
_user_value = value;
if (to_list) {
_list->add (frame, value);
_list->add (frame, value, erase_since_last);
}
}