1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-26 23:33:49 +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

@@ -78,8 +78,8 @@ void BatchPrefs::PopulateOrExchange( ShuttleGui & S )
S.TieCheckBox( _("&Don't apply effects in batch mode"),
wxT("/Batch/Debug"), false);
#endif
S.TieCheckBox( _("Cl&eanSpeech Mode (Customized GUI)"),
wxT("/Batch/CleanSpeechMode"), false);
// S.TieCheckBox( _("Cl&eanSpeech Mode (Customized GUI)"),
// wxT("/Batch/CleanSpeechMode"), false);
}
S.EndStatic();
S.EndHorizontalLay();
@@ -105,7 +105,8 @@ bool BatchPrefs::Apply()
PopulateOrExchange( S );
unsigned mode;
mode = gPrefs->Read(wxT("/Batch/CleanSpeechMode"), 1L);
//mode = gPrefs->Read(wxT("/Batch/CleanSpeechMode"), 1L);
mode = 0;
for(unsigned i=0; i<gAudacityProjects.GetCount(); i++)
if(gAudacityProjects[i])
{