diff options
| author | Jean Chalard <jchalard@google.com> | 2014-07-28 10:45:42 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-07-25 11:19:20 +0000 |
| commit | 036b83f4c44169703273b4e8192809fdadd7b8ad (patch) | |
| tree | 1d14d72e1c83b1da94612e459cd15157746d7817 /java/src | |
| parent | 1e491d90f9b26430f55a9dfee031007acf3d727b (diff) | |
| parent | 3d951c1eff4772e438eac8fe53bf6589b9eefa38 (diff) | |
Merge "Wait for an event before actually realizing it" into lmp-dev
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 d2a2fbdd8..c7c1d0564 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -237,10 +237,10 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen latinIme.mKeyboardSwitcher.getCurrentKeyboardScriptId()); break; case MSG_REOPEN_DICTIONARIES: - latinIme.resetSuggest(); // We need to re-evaluate the currently composing word in case the script has // changed. postWaitForDictionaryLoad(); + latinIme.resetSuggest(); break; case MSG_UPDATE_TAIL_BATCH_INPUT_COMPLETED: latinIme.mInputLogic.onUpdateTailBatchInputCompleted( |
