diff options
author | 2012-09-14 03:18:24 -0700 | |
---|---|---|
committer | 2012-09-14 03:18:24 -0700 | |
commit | 0108e4b12f678946f05940d8002830a2fed3010f (patch) | |
tree | 6cc974dd800fba968958429024208cb600b86fb2 | |
parent | 813ddb42423e60be3af1e96a4ccb032b3f2a3af6 (diff) | |
parent | a3f06baa57e679571add40bda26b556eb493318c (diff) | |
download | latinime-0108e4b12f678946f05940d8002830a2fed3010f.tar.gz latinime-0108e4b12f678946f05940d8002830a2fed3010f.tar.xz latinime-0108e4b12f678946f05940d8002830a2fed3010f.zip |
am a3f06baa: Merge "Do not auto-correct upon starting a gesture." into jb-mr1-dev
* commit 'a3f06baa57e679571add40bda26b556eb493318c':
Do not auto-correct upon starting a gesture.
-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; |