Rename "Sliding Time Scale/Pitch Shift" effect

This commit is contained in:
Steve Daulton 2018-04-28 21:16:41 +01:00
parent 4733cd7775
commit 0248c870b2
3 changed files with 4 additions and 4 deletions

View File

@ -484,7 +484,7 @@ void ScreenshotCommand::CaptureEffects(
"Repeat...", "Repeat...",
"Reverb...", "Reverb...",
//"Reverse", //"Reverse",
"Sliding Time Scale/Pitch Shift...", "Sliding Stretch...",
"Truncate Silence...", "Truncate Silence...",
"Wahwah...", "Wahwah...",
// Sole LADSPA effect... // Sole LADSPA effect...

View File

@ -96,7 +96,7 @@ wxString EffectTimeScale::GetDescription()
wxString EffectTimeScale::ManualPage() wxString EffectTimeScale::ManualPage()
{ {
return wxT("Sliding_Time_Scale_-_Pitch_Shift"); return wxT("Sliding_Stretch");
} }
// EffectDefinitionInterface implementation // EffectDefinitionInterface implementation

View File

@ -27,8 +27,8 @@ class ShuttleGui;
// two strings here // two strings here
// unusual case // unusual case
#define TIMESCALE_PLUGIN_SYMBOL \ #define TIMESCALE_PLUGIN_SYMBOL \
IdentInterfaceSymbol{ wxT("Time Scale"), \ IdentInterfaceSymbol{ wxT("Sliding Stretch"), \
XO("Sliding Time Scale/Pitch Shift") } XO("Sliding Stretch") }
class EffectTimeScale final : public EffectSBSMS class EffectTimeScale final : public EffectSBSMS
{ {