mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
Skip Channelstrip plugins in Route Property Box
This commit is contained in:
parent
263faa09ae
commit
dac39fd8cb
1 changed files with 5 additions and 0 deletions
|
|
@ -125,6 +125,11 @@ RoutePropertiesBox::add_processor_to_display (std::weak_ptr<Processor> w)
|
||||||
if (!pib) {
|
if (!pib) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
#ifdef MIXBUS
|
||||||
|
if (std::dynamic_pointer_cast<PluginInsert> (pib)->is_channelstrip ()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
GenericPluginUI* plugin_ui = new GenericPluginUI (pib, true, true);
|
GenericPluginUI* plugin_ui = new GenericPluginUI (pib, true, true);
|
||||||
pib->DropReferences.connect (_processor_connections, invalidator (*this), std::bind (&RoutePropertiesBox::refill_processors, this), gui_context());
|
pib->DropReferences.connect (_processor_connections, invalidator (*this), std::bind (&RoutePropertiesBox::refill_processors, this), gui_context());
|
||||||
_proc_uis.push_back (plugin_ui);
|
_proc_uis.push_back (plugin_ui);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue