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