Do not allow aux sends from the master-bus

This always leads to feedback situations. It may be acceptable
via the "allow feedback" option and accepting 1 cycle delay.
yet Aux-sends from the master bus are just bad practice,
and no found on any mixing desk.
This commit is contained in:
Robin Gareus 2020-03-25 21:38:06 +01:00
parent 53c666f1b8
commit a0f2ae4833
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -2054,7 +2054,7 @@ ProcessorBox::build_possible_aux_menu ()
return 0;
}
if (_route->is_monitor () || _route->is_foldbackbus ()) {
if (_route->is_monitor () || _route->is_foldbackbus () || _route->is_master ()) {
return 0;
}
@ -3423,7 +3423,7 @@ ProcessorBox::paste_processor_state (const XMLNodeList& nlist, boost::shared_ptr
}
/* compare to ProcessorBox::build_possible_aux_menu */
if (_route->is_monitor () || _route->is_foldbackbus ()) {
if (_route->is_monitor () || _route->is_foldbackbus () || _route->is_master ()) {
continue;
}