From 9daf5b81218f8fa1bfeb8b3070f24ad5d20e5278 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 7 Feb 2010 02:53:14 +0000 Subject: Fix panner write automation. git-svn-id: svn://localhost/ardour2/branches/3.0@6644 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/route.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/ardour/route.cc') 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 Route::panner() const { - return _main_outs->panner(); } boost::shared_ptr Route::gain_control() const { - return _amp->gain_control(); } -- cgit v1.2.3