From 80c2b9b0c4c03c5ae9459875c05bc7370b7d6ca0 Mon Sep 17 00:00:00 2001 From: Przemyslaw Szczepaniak Date: Thu, 5 Sep 2013 13:05:04 +0100 Subject: [PATCH] Hide "Play TTS sample" when locale is not settable as default Due to a bug, it's possible for settings to show status telling that locale is available, despite locale not being in list of locales settable as TTS default locale. This change fixes it. Bug: 10630713 Change-Id: I21f8487fc6c1ea7812aeffbc26dfa5fc0a8afa3b --- src/com/android/settings/tts/TextToSpeechSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/settings/tts/TextToSpeechSettings.java b/src/com/android/settings/tts/TextToSpeechSettings.java index c6976612de3..52ee4fda9b1 100644 --- a/src/com/android/settings/tts/TextToSpeechSettings.java +++ b/src/com/android/settings/tts/TextToSpeechSettings.java @@ -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);