summaryrefslogtreecommitdiff
path: root/libs/ardour/automation_control.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/automation_control.cc')
-rw-r--r--libs/ardour/automation_control.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/automation_control.cc b/libs/ardour/automation_control.cc
index 83b7db34be..2208a7ca84 100644
--- a/libs/ardour/automation_control.cc
+++ b/libs/ardour/automation_control.cc
@@ -120,14 +120,14 @@ void
AutomationControl::start_touch(double when)
{
set_touching (true);
- AutomationWatch::instance().add_automation_watch (shared_from_this());
alist()->start_touch(when);
+ AutomationWatch::instance().add_automation_watch (shared_from_this());
}
void
AutomationControl::stop_touch(bool mark, double when)
{
set_touching (false);
- AutomationWatch::instance().remove_automation_watch (shared_from_this());
alist()->stop_touch (mark, when);
+ AutomationWatch::instance().remove_automation_watch (shared_from_this());
}