diff options
author | 2012-07-06 00:08:12 -0700 | |
---|---|---|
committer | 2012-07-06 00:08:12 -0700 | |
commit | 9d95a107a50f1649e30700d5fe56a85e54e86790 (patch) | |
tree | be76e9716f9bd6cf23aecadd83d4640c014300cf /java/src | |
parent | 3378a244dc82ea19f5f2c363b579e18b6b873fca (diff) | |
parent | 663dbfd1cc0c88fe65dd56946cbbbade455da9ac (diff) | |
download | latinime-9d95a107a50f1649e30700d5fe56a85e54e86790.tar.gz latinime-9d95a107a50f1649e30700d5fe56a85e54e86790.tar.xz latinime-9d95a107a50f1649e30700d5fe56a85e54e86790.zip |
Merge "Simplification & UI improvement (A59)"
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 62c7bbda7..bbd38dd70 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1863,12 +1863,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen Utils.Stats.onSeparator((char)Keyboard.CODE_SPACE, WordComposer.NOT_A_COORDINATE, WordComposer.NOT_A_COORDINATE); if (!showingAddToDictionaryHint) { - // If we're not showing the "Touch again to save", then show corrections again. - // In case the cursor position doesn't change, make sure we show the suggestions again. - updateSuggestionsOrPredictions(true /* isPredictions */); - // Updating the predictions right away may be slow and feel unresponsive on slower - // terminals. On the other hand if we just postUpdateBigramPredictions() it will - // take a noticeable delay to update them which may feel uneasy. + // If we're not showing the "Touch again to save", then show predictions. + mHandler.postUpdateBigramPredictions(); } else { if (mIsUserDictionaryAvailable) { mSuggestionsView.showAddToDictionaryHint( |