diff --git a/src/effects/Fade.h b/src/effects/Fade.h index f6797aff3..e1ef0459e 100644 --- a/src/effects/Fade.h +++ b/src/effects/Fade.h @@ -38,6 +38,10 @@ class EffectFadeIn: public EffectSimpleMono { return wxString(_("Fading In")); } + virtual bool PromptUser() { + return true; + } + protected: sampleCount mSample; sampleCount mLen; @@ -68,6 +72,10 @@ class EffectFadeOut:public EffectSimpleMono { return wxString(_("Fading Out")); } + virtual bool PromptUser() { + return true; + } + protected: sampleCount mSample; sampleCount mLen; diff --git a/src/effects/Invert.h b/src/effects/Invert.h index cba1efa1b..ef2833da8 100644 --- a/src/effects/Invert.h +++ b/src/effects/Invert.h @@ -41,6 +41,10 @@ class EffectInvert:public EffectSimpleMono { return wxString(_("Inverting")); } + virtual bool PromptUser() { + return true; + } + protected: virtual bool ProcessSimpleMono(float *buffer, sampleCount len); }; diff --git a/src/effects/Reverse.h b/src/effects/Reverse.h index 75edf4411..ea0d5648b 100644 --- a/src/effects/Reverse.h +++ b/src/effects/Reverse.h @@ -44,6 +44,10 @@ class EffectReverse:public Effect { return wxString(_("Reversing")); } + virtual bool PromptUser() { + return true; + } + virtual bool Process(); private: