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.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 1f670605c1..eb0707044a 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -2846,6 +2846,8 @@ Route::set_latency_delay (nframes_t longest_session_latency)
void
Route::automation_snapshot (nframes_t now, bool force)
{
+ panner()->automation_snapshot (now, force);
+
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
(*i)->automation_snapshot (now, force);
}
@@ -3132,14 +3134,12 @@ Route::meter ()
boost::shared_ptr<Panner>
Route::panner() const
{
-
return _main_outs->panner();
}
boost::shared_ptr<AutomationControl>
Route::gain_control() const
{
-
return _amp->gain_control();
}