From d5393344c37232290bb5c8dd470d465c4af2426a Mon Sep 17 00:00:00 2001 From: martynshaw99 Date: Mon, 27 Jun 2011 22:17:16 +0000 Subject: [PATCH] Remove the option of going to CleanSpeech mode from the prefs. --- src/Experimental.h | 5 +++++ src/prefs/GUIPrefs.cpp | 2 ++ 2 files changed, 7 insertions(+) diff --git a/src/Experimental.h b/src/Experimental.h index 0f759a814..5edf71d4f 100644 --- a/src/Experimental.h +++ b/src/Experimental.h @@ -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 diff --git a/src/prefs/GUIPrefs.cpp b/src/prefs/GUIPrefs.cpp index 5722aa8ee..333c72ee7 100644 --- a/src/prefs/GUIPrefs.cpp +++ b/src/prefs/GUIPrefs.cpp @@ -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()