diff options
author | 2012-09-14 10:31:11 -0700 | |
---|---|---|
committer | 2012-09-14 10:31:11 -0700 | |
commit | 3f7e9f824c4abd646223d6305f26fc1129fcf193 (patch) | |
tree | 6cc974dd800fba968958429024208cb600b86fb2 /java/src | |
parent | d3e899cff6544252be58befd6eebdb5384dbb549 (diff) | |
parent | 0108e4b12f678946f05940d8002830a2fed3010f (diff) | |
download | latinime-3f7e9f824c4abd646223d6305f26fc1129fcf193.tar.gz latinime-3f7e9f824c4abd646223d6305f26fc1129fcf193.tar.xz latinime-3f7e9f824c4abd646223d6305f26fc1129fcf193.zip |
am 0108e4b1: am a3f06baa: Merge "Do not auto-correct upon starting a gesture." into jb-mr1-dev
* commit '0108e4b12f678946f05940d8002830a2fed3010f':
Do not auto-correct upon starting a gesture.
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 2b868fd2e..03de03d25 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1401,7 +1401,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen public void onStartBatchInput() { mConnection.beginBatchEdit(); if (mWordComposer.isComposingWord()) { - commitCurrentAutoCorrection(LastComposedWord.NOT_A_SEPARATOR); + commitTyped(LastComposedWord.NOT_A_SEPARATOR); mExpectingUpdateSelection = true; // TODO: Can we remove this? mSpaceState = SPACE_STATE_PHANTOM; |