mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-17 06:34:00 +01:00
Fix bug 1824
Generate effect preview fails when no selection
This commit is contained in:
@@ -2310,7 +2310,7 @@ void Effect::Preview(bool dryOnly)
|
||||
|
||||
double t1 = mT0 + previewDuration;
|
||||
|
||||
if ((t1 > mT1) && !(isNyquist && isGenerator)) {
|
||||
if ((t1 > mT1) && !isGenerator) {
|
||||
t1 = mT1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user