mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-09 14:43:57 +01:00
Fix Bug 432: Cleanspeech mode will now not activate, even if it was enabled in a previous version (and even if it has been deliberately added to audacity.cfg).
This commit is contained in:
@@ -122,7 +122,8 @@ void EffectNoiseRemoval::CleanSpeechMayReadNoisegate()
|
||||
// and it exists
|
||||
AudacityProject * project = GetActiveProject();
|
||||
if (project == NULL) {
|
||||
int mode = gPrefs->Read(wxT("/Batch/CleanSpeechMode"), 0L);
|
||||
//int mode = gPrefs->Read(wxT("/Batch/CleanSpeechMode"), 0L);
|
||||
int mode = 0;
|
||||
if (mode == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user