1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-08 14:13:57 +01:00

StereoToMono now EffectTypeHidden

This way it does not appear in the list of effects available to choose.
This commit is contained in:
James Crook
2015-05-14 22:15:44 +01:00
parent 4613be94f1
commit c85bf1c531
3 changed files with 7 additions and 7 deletions

View File

@@ -46,7 +46,7 @@ wxString EffectStereoToMono::GetDescription()
EffectType EffectStereoToMono::GetType()
{
// Really EffectTypeProcess, but this prevents it from showing in the Effect Menu
return EffectTypeNone;
return EffectTypeHidden;
}
bool EffectStereoToMono::IsInteractive()