summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index a90a730ea6..740e5949b4 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -2993,8 +2993,9 @@ Route::automation_snapshot (nframes_t now, bool force)
return;
}
+ IO::automation_snapshot (now, force);
+
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
- // IO::automation_snapshot (now, force); ?
(*i)->automation_snapshot (now, force);
}
}