mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-08 22:55:44 +01:00
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
1 changed files with 16 additions and 7 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue