lots more fidgety work on automation. sort of works now, but undo/redo needs attention

git-svn-id: svn://localhost/ardour2/branches/3.0@13047 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-07-17 03:10:40 +00:00
parent 539b94490f
commit 3c252e9321
11 changed files with 249 additions and 86 deletions

View file

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