1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-16 15:41:11 +02:00

Remove the option of going to CleanSpeech mode from the prefs.

This commit is contained in:
martynshaw99
2011-06-27 22:17:16 +00:00
parent de60481726
commit d5393344c3
2 changed files with 7 additions and 0 deletions

View File

@@ -153,3 +153,8 @@
#define EXPERIMENTAL_TRUNC_SILENCE
#endif
//MJS: make the CleanSpeech stuff experimental, rather than deleting it directly
// Normally disabled, for now.
// CleanSpeech should be done somehow else and not be polluting the code
//#define CLEANSPEECH

View File

@@ -128,6 +128,7 @@ void GUIPrefs::PopulateOrExchange(ShuttleGui & S)
}
S.EndStatic();
#ifdef CLEANSPEECH
S.StartStatic(_("Modes"));
{
S.TieCheckBox(_("Clea&nSpeech Mode (Customized GUI)"),
@@ -140,6 +141,7 @@ void GUIPrefs::PopulateOrExchange(ShuttleGui & S)
#endif
}
S.EndStatic();
#endif // CLEANSPEECH
}
bool GUIPrefs::Apply()