| 535 | } |
| 536 | |
| 537 | bool IsBundledPlugin(const PluginDescriptor* plug) |
| 538 | { |
| 539 | if(IsDefaultPlugin(plug)) |
| 540 | return true; |
| 541 | auto applicationResourcePath = wxFileName(FileNames::ResourcesDir()); |
| 542 | auto pluginPath = wxFileName(plug->GetPath()); |
| 543 | pluginPath.MakeAbsolute(); |
| 544 | return pluginPath.GetPath().StartsWith(applicationResourcePath.GetPath()); |
| 545 | } |
| 546 | |
| 547 | auto MakeGroupsFilter(const EffectsMenuGroups& list) -> auto |
| 548 | { |
no test coverage detected