From f46015d63c09fe661402201ea6154ef9e179ebf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BD=D0=B8=D0=B8=D0=BB=20=D0=9D=D0=B8=D0=BA?= =?UTF-8?q?=D0=BE=D0=BB=D0=B0=D0=B5=D0=B2?= Date: Sun, 18 Jul 2021 21:01:11 +0400 Subject: [PATCH] Fix incorrect AudacityCommand's PluginTypeString This should fix plugins in self-built versions of Tenacity for now. Signed-off-by: nm17 --- src/PluginManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PluginManager.cpp b/src/PluginManager.cpp index e8b6ba1fc..1cddae4ca 100644 --- a/src/PluginManager.cpp +++ b/src/PluginManager.cpp @@ -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");