1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-10 17:37:45 +02:00

Fix bug 1824

Generate effect preview fails when no selection
This commit is contained in:
SteveDaulton 2019-09-05 21:01:46 +01:00
parent 76d52fdc99
commit 5d4c884764

View File

@ -2310,7 +2310,7 @@ void Effect::Preview(bool dryOnly)
double t1 = mT0 + previewDuration;
if ((t1 > mT1) && !(isNyquist && isGenerator)) {
if ((t1 > mT1) && !isGenerator) {
t1 = mT1;
}