From 72bf12219e229595ac9bd68f6a18a5ced37d49c9 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 13 Feb 2020 22:25:32 +0100 Subject: [PATCH] M: Make edit_aux_send insensitive Mixbus does not have a working aux-panner and also no "Aux" button on Busses. --- gtk2_ardour/processor_box.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc index 0b53ac3869..9eed52b889 100644 --- a/gtk2_ardour/processor_box.cc +++ b/gtk2_ardour/processor_box.cc @@ -4089,6 +4089,10 @@ ProcessorBox::edit_aux_send (boost::shared_ptr processor) if (boost::dynamic_pointer_cast (processor) == 0) { return false; } + if (ARDOUR::Profile->get_mixbus()) { + /* don't allow editing sends, ignore switch to send-edit */ + return true; + } if (_parent_strip) { boost::shared_ptr send = boost::dynamic_pointer_cast (processor);