aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2012-10-01 10:17:06 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-10-01 10:17:06 -0700
commit86db54df74b821a15f7a3081c3737f8a63f91214 (patch)
treeac31303d46c0269b97182503542349786e323fdd /java/src/com/android/inputmethod/latin/LatinIME.java
parent173ee75e84ec9ea9383b0f8c335646c3717d914f (diff)
parent137203d49317e05a482a34cfd25452fc0dce6d60 (diff)
downloadlatinime-86db54df74b821a15f7a3081c3737f8a63f91214.tar.gz
latinime-86db54df74b821a15f7a3081c3737f8a63f91214.tar.xz
latinime-86db54df74b821a15f7a3081c3737f8a63f91214.zip
am 137203d4: am 574b80aa: Remove debug prints.
* commit '137203d49317e05a482a34cfd25452fc0dce6d60': 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);
}
}