1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-30 23:49:28 +02:00

Amending commit 1176b61 to avoid compatiblity break in macros using EQ

This commit is contained in:
Paul Licameli 2020-01-18 11:14:41 -05:00
parent 705d4a26a5
commit 73fd60543d

View File

@ -26,8 +26,10 @@
ComponentInterfaceSymbol{ XO("Equalization") }
#define GRAPHIC_EQ_PLUGIN_SYMBOL \
ComponentInterfaceSymbol{ wxT("Graphic EQ"), XO("Graphic EQ") }
// "Filter Curve EQ" in the user-facing string, but preserve the old
// internal string
#define FILTER_CURVE_PLUGIN_SYMBOL \
ComponentInterfaceSymbol{ wxT("Filter Curve EQ"), XO("Filter Curve EQ") }
ComponentInterfaceSymbol{ wxT("Filter Curve"), XO("Filter Curve EQ") }
// Flags to specialise the UI
const int kEqOptionGraphic =1;