From ef4facca1182c4a870addbf2e8eee609afd63b4d Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 19 Aug 2016 01:14:21 +0200 Subject: [PATCH] fix Aux-Send Panner Linking --- libs/ardour/route.cc | 3 +-- 1 file changed, 1 insertion(+), 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, boost::shared_ptrprocess_lock ()); - boost::shared_ptr sendpan (new Pannable (_session)); - listener.reset (new InternalSend (_session, sendpan, _mute_master, boost::dynamic_pointer_cast(shared_from_this()), route, Delivery::Aux)); + listener.reset (new InternalSend (_session, _pannable, _mute_master, boost::dynamic_pointer_cast(shared_from_this()), route, Delivery::Aux)); } add_processor (listener, before);