1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 16:39:30 +02:00

Doesn't support chains

This commit is contained in:
lllucius 2015-01-02 06:56:13 +00:00
parent aa49817563
commit aaaac65176

View File

@ -47,6 +47,11 @@ class EffectSilence : public Generator {
return wxString(_("Generating Silence"));
}
// Return true if the effect supports processing via batch chains.
virtual bool SupportsChains() {
return false;
}
// Useful only after PromptUser values have been set.
virtual wxString GetEffectDescription() {
return wxString::Format(_("Applied effect: Generate Silence, %.6lf seconds"), mDuration);