diff options
author | 2012-02-07 01:14:44 -0800 | |
---|---|---|
committer | 2012-02-07 01:14:44 -0800 | |
commit | ac0498ca067e459564dfa96ceabeba590546daac (patch) | |
tree | cd2b011de50b349c444b6504d571c31635da2e9a /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | dbe99ddc86350831a65a711e8bfd9f5f814202e8 (diff) | |
parent | 172a013ab5481dee22e0637bc997b8bcbc4436db (diff) | |
download | latinime-ac0498ca067e459564dfa96ceabeba590546daac.tar.gz latinime-ac0498ca067e459564dfa96ceabeba590546daac.tar.xz latinime-ac0498ca067e459564dfa96ceabeba590546daac.zip |
am 172a013a: Fix a bug with the auto-correct indicator
* commit '172a013ab5481dee22e0637bc997b8bcbc4436db':
Fix a bug with the auto-correct indicator
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.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(); |