diff options
author | 2012-09-14 17:52:54 +0900 | |
---|---|---|
committer | 2012-09-14 17:52:54 +0900 | |
commit | eda096538b4cfe7f31a347aa7dd43d239fe21c4a (patch) | |
tree | c4834d2b90f22399c999d0915cfa7c35367562bd /java | |
parent | 33a226f897f20d7cc623ad6facc17bf0382426a1 (diff) | |
download | latinime-eda096538b4cfe7f31a347aa7dd43d239fe21c4a.tar.gz latinime-eda096538b4cfe7f31a347aa7dd43d239fe21c4a.tar.xz latinime-eda096538b4cfe7f31a347aa7dd43d239fe21c4a.zip |
Do not auto-correct upon starting a gesture.
We decided to revert this UI decision after negative feedback.
Indeed, if you use to gesture but tap just one word, chances
are it's because you know you do NOT want a dictionary word.
Bug: 6965241
Change-Id: I85fdfab3c1cf1d3c0fd3e95908e01bdf56bccbba
Diffstat (limited to 'java')
-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 9194a977a..62e412b97 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1382,7 +1382,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; |