1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-05 14:18:53 +02:00

Move Nyquist Prompt into plug-ins

Even though it is a built-in Audacity effect, it is more logical in plug-ins, because the actual effect that will be run when the effect is applied is a plug-in.  Makes the list of effects (sorted by type) more logical.
This commit is contained in:
James Crook 2017-04-19 12:52:11 +01:00
parent 6f38298ad8
commit e9df6cb49f

View File

@ -1416,7 +1416,9 @@ void AudacityProject::PopulateEffectsMenu(CommandManager* c,
if ( !plug->IsEnabled() ){
;// don't add to menus!
}
else if (plug->IsEffectDefault())
else if (plug->IsEffectDefault()
// Move Nyquist prompt into nyquist group.
&& (plug->GetName() != _("Nyquist Prompt")))
{
defplugs.Add(plug);
}