1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-12 06:01:13 +02:00

Bug 2428 - Nyquist Effects do not display a Progress Dialog if run from a Macro.

This commit is contained in:
James Crook 2020-05-29 21:54:18 +01:00
parent 6d49228d65
commit 637712489f

View File

@ -648,9 +648,11 @@ bool NyquistEffect::Process()
EffectManager & em = EffectManager::Get();
em.SetSkipStateFlag(false);
if (mExternal) {
mProgress->Hide();
}
// This code was added in a fix for bug 2392 (no preview for Nyquist)
// It was commented out in a fix for bug 2428 (no progress dialog from a macro)
//if (mExternal) {
// mProgress->Hide();
//}
mOutputTime = 0;
mCount = 0;