1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 00:29:41 +02:00

Select generated audio on success

This commit is contained in:
Leland Lucius 2015-05-04 20:52:25 -05:00
parent c009157290
commit f0cd43236d

View File

@ -1492,6 +1492,11 @@ bool Effect::ProcessPass()
mInBufPos = NULL;
}
if (bGoodResult && GetType() == EffectTypeGenerate)
{
mT1 = mT0 + mDuration;
}
return bGoodResult;
}