diff options
author | 2013-04-30 07:11:13 +0000 | |
---|---|---|
committer | 2013-04-30 07:11:13 +0000 | |
commit | 71c1e50fdb47c78b3180cc6b04d4cababe3f3fe2 (patch) | |
tree | caefd6adc419dd75b54b153554b52289878ddbdd /java/src | |
parent | 01170ffebeb4a604667abb84310ed4e910f97bf7 (diff) | |
parent | 5aa14c26361b3f45be7c0746f0db4ffbdc41b75d (diff) | |
download | latinime-71c1e50fdb47c78b3180cc6b04d4cababe3f3fe2.tar.gz latinime-71c1e50fdb47c78b3180cc6b04d4cababe3f3fe2.tar.xz latinime-71c1e50fdb47c78b3180cc6b04d4cababe3f3fe2.zip |
Merge "Fix the title of the fragment of the personal dictionary"
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/SettingsFragment.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/java/src/com/android/inputmethod/latin/SettingsFragment.java b/java/src/com/android/inputmethod/latin/SettingsFragment.java index 830cae9b8..835ef7b46 100644 --- a/java/src/com/android/inputmethod/latin/SettingsFragment.java +++ b/java/src/com/android/inputmethod/latin/SettingsFragment.java @@ -420,10 +420,6 @@ public final class SettingsFragment extends InputMethodSettingsFragment // not present or disabled. In this case we need to remove the preference. getPreferenceScreen().removePreference(userDictionaryPreference); } else if (localeList.size() <= 1) { - final Intent intent = - new Intent(UserDictionaryList.USER_DICTIONARY_SETTINGS_INTENT_ACTION); - userDictionaryPreference.setTitle(R.string.user_dict_single_settings_title); - userDictionaryPreference.setIntent(intent); userDictionaryPreference.setFragment(UserDictionarySettings.class.getName()); // If the size of localeList is 0, we don't set the locale parameter in the // extras. This will be interpreted by the UserDictionarySettings class as @@ -436,7 +432,6 @@ public final class SettingsFragment extends InputMethodSettingsFragment userDictionaryPreference.getExtras().putString("locale", locale); } } else { - userDictionaryPreference.setTitle(R.string.user_dict_multiple_settings_title); userDictionaryPreference.setFragment(UserDictionaryList.class.getName()); } } |