diff options
author | 2012-02-07 17:20:23 +0900 | |
---|---|---|
committer | 2012-02-07 17:20:23 +0900 | |
commit | 172a013ab5481dee22e0637bc997b8bcbc4436db (patch) | |
tree | cd2b011de50b349c444b6504d571c31635da2e9a /java | |
parent | 4c5daa8a5574628204be602578794035ab8686f0 (diff) | |
download | latinime-172a013ab5481dee22e0637bc997b8bcbc4436db.tar.gz latinime-172a013ab5481dee22e0637bc997b8bcbc4436db.tar.xz latinime-172a013ab5481dee22e0637bc997b8bcbc4436db.zip |
Fix a bug with the auto-correct indicator
Bug: 5969106
Change-Id: I02d4b9184bb2c3fc0d08ffd5db77a9f9d816631f
Diffstat (limited to 'java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index e4339318b..34080750c 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -2211,6 +2211,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar } } ic.deleteSurroundingText(restartLength, 0); + mComposingStateManager.onStartComposingText(); ic.setComposingText(mWordComposer.getTypedWord(), 1); mHandler.cancelUpdateBigramPredictions(); mHandler.postUpdateSuggestions(); |