Do not automatically enable surround-send

For Mixbus, the surround-send is not visible.
This commit is contained in:
Robin Gareus 2024-01-18 21:37:11 +01:00
parent 75e8f58952
commit 276adf292e
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -5524,7 +5524,7 @@ Route::setup_invisible_processors ()
_processors = new_processors;
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
if (!(*i)->display_to_user () && !(*i)->enabled () && (*i) != _monitor_send) {
if (!(*i)->display_to_user () && !(*i)->enabled () && (*i) != _monitor_send && (*i) != _surround_send) {
(*i)->enable (true);
}
}