summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-04-21 14:58:12 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-04-21 14:58:12 +0000
commit15cf746b80e01cf463f402340943e81b5c8db698 (patch)
tree36041abe357d6b49045e369721984539b353c222 /gtk2_ardour
parent4894ec8c413c0447ed3fd60ea2fcf3975ee96ceb (diff)
start of The Fix for automation touch+write
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@6943 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/automation_line.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/automation_line.cc b/gtk2_ardour/automation_line.cc
index 94273626c3..47e5333c52 100644
--- a/gtk2_ardour/automation_line.cc
+++ b/gtk2_ardour/automation_line.cc
@@ -1199,6 +1199,7 @@ AutomationLine::hide_selection ()
void
AutomationLine::list_changed ()
{
+ cerr << "AL " << &alist << " changed\n";
queue_reset ();
}
@@ -1208,6 +1209,8 @@ AutomationLine::reset_callback (const AutomationList& events)
ALPoints tmp_points;
uint32_t npoints = events.size();
+ cerr << "Redraw with " << npoints << endl;
+
if (npoints == 0) {
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
delete *i;