From a0f2ae483393a0362053a39a86652485ee799312 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 25 Mar 2020 21:38:06 +0100 Subject: [PATCH] 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. --- gtk2_ardour/processor_box.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc index f92c6c9209..e61d693f02 100644 --- a/gtk2_ardour/processor_box.cc +++ b/gtk2_ardour/processor_box.cc @@ -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; }