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:
		| @@ -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))) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user