mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-04 15:50:10 +01:00
Allow all effects in chains now that presets can be used
This commit is contained in:
@@ -282,13 +282,10 @@ wxArrayString BatchCommands::GetAllCommands()
|
||||
const PluginDescriptor *plug = pm.GetFirstPlugin(PluginTypeEffect);
|
||||
while (plug)
|
||||
{
|
||||
if (plug->IsEffectAutomatable())
|
||||
command = em.GetEffectIdentifier(plug->GetID());
|
||||
if (!command.IsEmpty())
|
||||
{
|
||||
command = em.GetEffectIdentifier(plug->GetID());
|
||||
if (!command.IsEmpty())
|
||||
{
|
||||
commands.Add(command);
|
||||
}
|
||||
commands.Add(command);
|
||||
}
|
||||
plug = pm.GetNextPlugin(PluginTypeEffect);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user