am 80c2b9b0: Hide "Play TTS sample" when locale is not settable as default

* commit '80c2b9b0c4c03c5ae9459875c05bc7370b7d6ca0':
  Hide "Play TTS sample" when locale is not settable as default
This commit is contained in:
Przemyslaw Szczepaniak
2013-09-05 06:26:44 -07:00
committed by Android Git Automerger

View File

@@ -288,7 +288,7 @@ public class TextToSpeechSettings extends SettingsPreferenceFragment implements
if (defaultAvailable == TextToSpeech.LANG_NOT_SUPPORTED ||
defaultAvailable == TextToSpeech.LANG_MISSING_DATA ||
mAvailableStrLocals != null && notInAvailableLangauges) {
mAvailableStrLocals == null || notInAvailableLangauges) {
if (DBG) Log.d(TAG, "Default locale for this TTS engine is not supported.");
updateEngineStatus(R.string.tts_status_not_supported);
updateWidgetState(false);