diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 554bd3f2be..2d77edce55 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -6055,6 +6055,12 @@ Route::automation_control_recurse (PBD::ID const & id) const return ac; } + if (_pannable) { + if ((ac = _pannable->automation_control (id))) { + return ac; + } + } + Glib::Threads::RWLock::ReaderLock lm (_processor_lock); for (ProcessorList::const_iterator i = _processors.begin(); i != _processors.end(); ++i) {