mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
Do not automatically enable surround-send
For Mixbus, the surround-send is not visible.
This commit is contained in:
parent
75e8f58952
commit
276adf292e
1 changed files with 1 additions and 1 deletions
|
|
@ -5524,7 +5524,7 @@ Route::setup_invisible_processors ()
|
||||||
_processors = new_processors;
|
_processors = new_processors;
|
||||||
|
|
||||||
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
|
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);
|
(*i)->enable (true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue