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:
parent
99f7323e18
commit
169ad5b019
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user