1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 08:09:32 +02:00

Fix incorrect AudacityCommand's PluginTypeString

This should fix plugins in self-built versions of Tenacity for now.

Signed-off-by: nm17 <dannevergame@gmail.com>
This commit is contained in:
Даниил Николаев 2021-07-18 21:01:11 +04:00 committed by GitHub
parent 4b8d4d30f8
commit f46015d63c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1608,7 +1608,7 @@ wxString PluginManager::GetPluginTypeString(PluginType type)
str = wxT("Effect");
break;
case PluginTypeAudacityCommand:
str = wxT("Generic");
str = wxT("Module");
break;
case PluginTypeExporter:
str = wxT("Exporter");