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