mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Fix A/B plugins, skip internal but visible plugins (e.g. LAN)
This commit is contained in:
parent
9d865f241d
commit
d8e0a29316
1 changed files with 3 additions and 3 deletions
|
|
@ -1279,7 +1279,7 @@ Route::ab_plugins (bool forward)
|
|||
if (!boost::dynamic_pointer_cast<PluginInsert> (*i)) {
|
||||
continue;
|
||||
}
|
||||
if (!(*i)->display_to_user ()) {
|
||||
if (!(*i)->display_to_user () || is_internal_processor (*i)) {
|
||||
continue;
|
||||
}
|
||||
#ifdef MIXBUS
|
||||
|
|
@ -1304,7 +1304,7 @@ Route::ab_plugins (bool forward)
|
|||
if (!boost::dynamic_pointer_cast<PluginInsert> (*i)) {
|
||||
continue;
|
||||
}
|
||||
if (!(*i)->display_to_user ()) {
|
||||
if (!(*i)->display_to_user () || is_internal_processor (*i)) {
|
||||
continue;
|
||||
}
|
||||
#ifdef MIXBUS
|
||||
|
|
@ -1999,7 +1999,7 @@ Route::all_visible_processors_active (bool state)
|
|||
}
|
||||
|
||||
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
|
||||
if (!(*i)->display_to_user() || boost::dynamic_pointer_cast<Amp> (*i)) {
|
||||
if (!(*i)->display_to_user () || is_internal_processor (*i)) {
|
||||
continue;
|
||||
}
|
||||
#ifdef MIXBUS
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue