aboutsummaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2012-09-14 03:11:50 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-09-14 03:11:51 -0700
commita3f06baa57e679571add40bda26b556eb493318c (patch)
tree6cc974dd800fba968958429024208cb600b86fb2 /java
parentb29efecd26986e17d73f7226e8ac694e116601ba (diff)
parenteda096538b4cfe7f31a347aa7dd43d239fe21c4a (diff)
downloadlatinime-a3f06baa57e679571add40bda26b556eb493318c.tar.gz
latinime-a3f06baa57e679571add40bda26b556eb493318c.tar.xz
latinime-a3f06baa57e679571add40bda26b556eb493318c.zip
Merge "Do not auto-correct upon starting a gesture." into jb-mr1-dev
Diffstat (limited to 'java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java2
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;