1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-31 14:13:50 +01:00

Bug 1049: Spectral edit parametric EQ fails silently on 0 Hz low frequency.

This commit is contained in:
Paul Licameli
2015-07-25 12:25:08 -04:00
parent cf9851c313
commit 0a71291c99

View File

@@ -43,7 +43,7 @@
(cond
((not (or f0 f1))
(throw 'error-message (format nil "~aPlease select frequencies." p-err)))
((not f0)
((or (not f0) (= f0 0))
(throw 'error-message (format nil "~aLow frequency is undefined." p-err)))
((not f1)
(throw 'error-message (format nil "~aHigh frequency is undefined." p-err)))