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:
parent
53c666f1b8
commit
a0f2ae4833
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user