diff options
author | 2012-10-01 16:03:21 +0900 | |
---|---|---|
committer | 2012-10-01 17:03:15 +0900 | |
commit | 574b80aacee95df26e85e6b78876a73d7076a672 (patch) | |
tree | ac31303d46c0269b97182503542349786e323fdd /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 6052a81e08758c738b80fb8bde6babe97bcdd261 (diff) | |
download | latinime-574b80aacee95df26e85e6b78876a73d7076a672.tar.gz latinime-574b80aacee95df26e85e6b78876a73d7076a672.tar.xz latinime-574b80aacee95df26e85e6b78876a73d7076a672.zip |
Remove debug prints.
Bug: 7226098
Change-Id: Ibacb740022a6af56c9d555d6797dd402a89f6ca4
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 4 |
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); } } |