summaryrefslogtreecommitdiff
path: root/libs/ardour/automation_event.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-11-08 15:40:54 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-11-08 15:40:54 +0000
commit5932ec19c4c2b00edcfc6068c637b39c007c904f (patch)
tree54c94cd6137c51735bd5238fb68450fe9ba81355 /libs/ardour/automation_event.cc
parentd0176c23e384a2bb963dcc75a8300caf2852d3d7 (diff)
add operator=() to Curve; add AudioRegion::copy_settings() for replicating region settings after generating a new region via an AudioFilter; add new ReadOps* for reading an audioregion with and without various "internal processing" applied (fades, scaling, automation); add new "Discovering Plugins" boot time message
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4109 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/automation_event.cc')
-rw-r--r--libs/ardour/automation_event.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/libs/ardour/automation_event.cc b/libs/ardour/automation_event.cc
index 2815d4be50..3e257d2b7a 100644
--- a/libs/ardour/automation_event.cc
+++ b/libs/ardour/automation_event.cc
@@ -185,7 +185,10 @@ AutomationList::operator= (const AutomationList& other)
max_yval = other.max_yval;
max_xval = other.max_xval;
default_value = other.default_value;
-
+
+ rt_insertion_point = events.end();
+ lookup_cache.range.first = events.end();
+
mark_dirty ();
maybe_signal_changed ();
}