| 158 | } |
| 159 | |
| 160 | void EffectAndCommandPluginManager::BatchProcessingOff(const PluginID& ID) |
| 161 | { |
| 162 | if (auto effect = EffectManager::Get().GetEffect(ID)) |
| 163 | effect->UnsetBatchProcessing(); |
| 164 | else if (auto command = GetAudacityCommand(ID)) |
| 165 | command->SetBatchProcessing(false); |
| 166 | } |
| 167 | |
| 168 | // This function is used only in the macro programming user interface |
| 169 | wxString EffectAndCommandPluginManager::GetEffectParameters(const PluginID& ID) |
no test coverage detected