mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
Relax LV2 plugin filter to substring (e.g. "Utility", "MIDI Utility")
This commit is contained in:
parent
500033b416
commit
1fe10c0e3e
1 changed files with 1 additions and 4 deletions
|
|
@ -3356,10 +3356,7 @@ LV2PluginInfo::in_category (const std::string &c) const
|
|||
{
|
||||
// TODO use untranslated lilv_plugin_get_class()
|
||||
// match gtk2_ardour/plugin_selector.cc
|
||||
if (category == c) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
return category.find(c) != string::npos;
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue