aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2012-07-05 14:49:45 +0900
committerJean Chalard <jchalard@google.com>2012-07-06 16:28:42 +0900
commit449be371aee91594bc6ee09479af0cc20bcfcea9 (patch)
tree2e9e727f4f145a201fd8d5dbe14fd0bd34fcaf52 /java/src
parent43193ad60f623a00c2ba2eb4c666353418979923 (diff)
downloadlatinime-449be371aee91594bc6ee09479af0cc20bcfcea9.tar.gz
latinime-449be371aee91594bc6ee09479af0cc20bcfcea9.tar.xz
latinime-449be371aee91594bc6ee09479af0cc20bcfcea9.zip
Refinement (A64)
Change-Id: I7c16e28ffce4fe0965b756bf2b00ee63b77dd039
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 c0f125e3a..25159b5ce 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -2015,7 +2015,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
// Since we just changed languages, we should re-evaluate suggestions with whatever word
// we are currently composing. If we are not composing anything, we may want to display
// predictions or punctuation signs (which is done by updateBigramPredictions anyway).
- if (mConnection.isCursorTouchingWord(mCurrentSettings)) {
+ if (mWordComposer.isComposingWord()) {
mHandler.postUpdateSuggestions();
} else {
mHandler.postUpdateBigramPredictions();