mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
hide invisible plugin-control properties in generic ctrl UI
This commit is contained in:
parent
f2a07e711d
commit
7ecbdd27a9
1 changed files with 4 additions and 0 deletions
|
|
@ -384,6 +384,10 @@ GenericPluginUI::build ()
|
|||
const ParameterDescriptor& desc = d->second;
|
||||
const Evoral::Parameter param(PluginPropertyAutomation, 0, desc.key);
|
||||
|
||||
if (desc.label == X_("hidden")) {
|
||||
continue;
|
||||
}
|
||||
|
||||
std::shared_ptr<ARDOUR::AutomationControl> c (std::dynamic_pointer_cast<ARDOUR::AutomationControl>(_pib->control (param)));
|
||||
|
||||
if (!c) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue