aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2012-10-01 13:46:16 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-10-01 13:46:16 -0700
commit37688ae8c16f5989750c295d08291a5a58cb22d0 (patch)
tree9a2446a91f2cc35f73aae228f51bc28b546a42d5 /java/src/com/android/inputmethod/latin/LatinIME.java
parent033010382c12fe18882977017f6630107ca91c2d (diff)
parent86db54df74b821a15f7a3081c3737f8a63f91214 (diff)
downloadlatinime-37688ae8c16f5989750c295d08291a5a58cb22d0.tar.gz
latinime-37688ae8c16f5989750c295d08291a5a58cb22d0.tar.xz
latinime-37688ae8c16f5989750c295d08291a5a58cb22d0.zip
am 86db54df: am 137203d4: am 574b80aa: Remove debug prints.
* commit '86db54df74b821a15f7a3081c3737f8a63f91214': Remove debug prints.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 268d36ad2..311355374 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1878,6 +1878,10 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
mIsAutoCorrectionIndicatorOn = newAutoCorrectionIndicator;
final CharSequence textWithUnderline =
getTextWithUnderline(mWordComposer.getTypedWord());
+ // TODO: when called from an updateSuggestionStrip() call that results from a posted
+ // message, this is called outside any batch edit. Potentially, this may result in some
+ // janky flickering of the screen, although the display speed makes it unlikely in
+ // the practice.
mConnection.setComposingText(textWithUnderline, 1);
}
}