summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-02-07 02:53:14 +0000
committerCarl Hetherington <carl@carlh.net>2010-02-07 02:53:14 +0000
commit9daf5b81218f8fa1bfeb8b3070f24ad5d20e5278 (patch)
treec6930886297e72de5ad5656eb8f73c481a6a7630 /libs
parenta0598953d91d1087795988118034f3ae28e11079 (diff)
Fix panner write automation.
git-svn-id: svn://localhost/ardour2/branches/3.0@6644 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-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();
}