mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-16 07:31:16 +02:00
Remove artificial restriction on default maximum frequency of Spectrogram
This commit is contained in:
@@ -208,8 +208,8 @@ bool SpectrumPrefs::Validate()
|
|||||||
wxMessageBox(_("The maximum frequency must be an integer"));
|
wxMessageBox(_("The maximum frequency must be an integer"));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (maxFreq < 100 || maxFreq > 100000) {
|
if (maxFreq < 100) {
|
||||||
wxMessageBox(_("Maximum frequency must be in the range 100 Hz - 100,000 Hz"));
|
wxMessageBox(_("Maximum frequency must be 100 Hz or above"));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user