diff options
author | 2011-02-23 23:47:58 -0800 | |
---|---|---|
committer | 2011-02-23 23:47:58 -0800 | |
commit | 6b05d482f475defdd759933cf5f4e3663fa8c165 (patch) | |
tree | 5824b1dee57d0198fb7dfb5da1d6f0e1584c2be8 /java/src | |
parent | fdc4b083098ee16e8e8fa267e8cc2fe99782b439 (diff) | |
parent | 27023341658b4cf5430d18ddb94fd9502ecfe3cb (diff) | |
download | latinime-6b05d482f475defdd759933cf5f4e3663fa8c165.tar.gz latinime-6b05d482f475defdd759933cf5f4e3663fa8c165.tar.xz latinime-6b05d482f475defdd759933cf5f4e3663fa8c165.zip |
Merge "Fix AutoText enabling timing"
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 32f4046b1..a9973d197 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -419,7 +419,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen } private void initSuggest() { - updateAutoTextEnabled(); String locale = mSubtypeSwitcher.getInputLocaleStr(); Locale savedLocale = mSubtypeSwitcher.changeSystemLocale(new Locale(locale)); @@ -433,6 +432,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen int mainDicResId = Utils.getMainDictionaryResourceId(res); mSuggest = new Suggest(this, mainDicResId); loadAndSetAutoCorrectionThreshold(prefs); + updateAutoTextEnabled(); mUserDictionary = new UserDictionary(this, locale); mSuggest.setUserDictionary(mUserDictionary); |