13
0

Don't add post-fader aux sends after the main deliveries; put them post-fader but pre-main-outs.

git-svn-id: svn://localhost/ardour2/branches/3.0@8505 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-01-11 02:48:02 +00:00
parent 99f7323e18
commit 169ad5b019

View File

@ -2554,13 +2554,22 @@ Route::listen_via (boost::shared_ptr<Route> route, Placement placement, bool /*a
_monitor_send = listener;
}
if (placement == PostFader) {
/* put it *really* at the end, not just after the panner (main outs)
*/
add_processor (listener, _processors.end());
} else {
add_processor (listener, PreFader);
}
if (aux) {
add_processor (listener, placement);
} else {
if (placement == PostFader) {
/* put it *really* at the end, not just after the panner (main outs)
*/
add_processor (listener, _processors.end());
} else {
add_processor (listener, PreFader);
}
}
return 0;
}