From 1895994bd85c4cf69761f4e250fc2f5df5129121 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Tue, 1 Aug 2017 12:15:51 -0400 Subject: [PATCH] Effect parameter names containing '=' now work in chain editing... ... There was at least one example of this in the LADSPA swh-plugins. See Tape Delay Simulation. --- include/audacity/EffectAutomationParameters.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/audacity/EffectAutomationParameters.h b/include/audacity/EffectAutomationParameters.h index a7b99f1c6..bce9bd2dc 100644 --- a/include/audacity/EffectAutomationParameters.h +++ b/include/audacity/EffectAutomationParameters.h @@ -286,6 +286,7 @@ public: cleaned.Replace(wxT("/"), wxT("_")); cleaned.Replace(wxT("\\"), wxT("_")); cleaned.Replace(wxT(":"), wxT("_")); + cleaned.Replace(wxT("="), wxT("_")); return cleaned; }