summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-08-19 01:14:21 +0200
committerRobin Gareus <robin@gareus.org>2016-08-19 01:14:21 +0200
commitef4facca1182c4a870addbf2e8eee609afd63b4d (patch)
tree9caa4edcdb5987e070fe2f19d4515676fbdfe73a /libs/ardour/route.cc
parent3dc71953de6acb33ed6b9c3f10cddae30e8f6273 (diff)
fix Aux-Send Panner Linking
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 11db73241c..8efe1315bc 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -2981,8 +2981,7 @@ Route::add_aux_send (boost::shared_ptr<Route> route, boost::shared_ptr<Processor
{
Glib::Threads::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
- boost::shared_ptr<Pannable> sendpan (new Pannable (_session));
- listener.reset (new InternalSend (_session, sendpan, _mute_master, boost::dynamic_pointer_cast<ARDOUR::Route>(shared_from_this()), route, Delivery::Aux));
+ listener.reset (new InternalSend (_session, _pannable, _mute_master, boost::dynamic_pointer_cast<ARDOUR::Route>(shared_from_this()), route, Delivery::Aux));
}
add_processor (listener, before);