aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-02-23 23:47:58 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-02-23 23:47:58 -0800
commit6b05d482f475defdd759933cf5f4e3663fa8c165 (patch)
tree5824b1dee57d0198fb7dfb5da1d6f0e1584c2be8 /java/src
parentfdc4b083098ee16e8e8fa267e8cc2fe99782b439 (diff)
parent27023341658b4cf5430d18ddb94fd9502ecfe3cb (diff)
downloadlatinime-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.java2
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);