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:
parent
76d52fdc99
commit
5d4c884764
@ -2310,7 +2310,7 @@ void Effect::Preview(bool dryOnly)
|
||||
|
||||
double t1 = mT0 + previewDuration;
|
||||
|
||||
if ((t1 > mT1) && !(isNyquist && isGenerator)) {
|
||||
if ((t1 > mT1) && !isGenerator) {
|
||||
t1 = mT1;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user