1
0
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:
james.k.crook@gmail.com
2012-03-25 20:22:10 +00:00
parent 1f17e0bb45
commit 860e19ae47
6 changed files with 25 additions and 19 deletions

View File

@@ -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;
}