Don't show automation of hidden plugins

This commit is contained in:
Robin Gareus 2024-01-13 17:56:47 +01:00
parent 83e4b49a9e
commit a6ea40552c
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 3 additions and 0 deletions

View File

@ -1892,6 +1892,9 @@ RouteTimeAxisView::add_existing_processor_automation_curves (std::weak_ptr<Proce
/* The Amp processor is a special case and is dealt with separately */
return;
}
if (!processor->display_to_user()) {
return;
}
set<Evoral::Parameter> existing;
processor->what_has_data (existing);