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
This commit is contained in:
parent
33a226f897
commit
eda096538b
1 changed files with 1 additions and 1 deletions
|
@ -1382,7 +1382,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||||
public void onStartBatchInput() {
|
public void onStartBatchInput() {
|
||||||
mConnection.beginBatchEdit();
|
mConnection.beginBatchEdit();
|
||||||
if (mWordComposer.isComposingWord()) {
|
if (mWordComposer.isComposingWord()) {
|
||||||
commitCurrentAutoCorrection(LastComposedWord.NOT_A_SEPARATOR);
|
commitTyped(LastComposedWord.NOT_A_SEPARATOR);
|
||||||
mExpectingUpdateSelection = true;
|
mExpectingUpdateSelection = true;
|
||||||
// TODO: Can we remove this?
|
// TODO: Can we remove this?
|
||||||
mSpaceState = SPACE_STATE_PHANTOM;
|
mSpaceState = SPACE_STATE_PHANTOM;
|
||||||
|
|
Loading…
Reference in a new issue