am 71b047e3
: Merge "Don\'t deactivate the LastComposedWord on shift" into jb-dev
* commit '71b047e3018555690ec3e4a639b395f1f79e1e67': Don't deactivate the LastComposedWord on shift
This commit is contained in:
commit
79daef2e9b
1 changed files with 3 additions and 2 deletions
|
@ -1298,8 +1298,9 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switcher.onCodeInput(primaryCode);
|
switcher.onCodeInput(primaryCode);
|
||||||
// Reset after any single keystroke
|
// Reset after any single keystroke, except shift and symbol-shift
|
||||||
if (!didAutoCorrect)
|
if (!didAutoCorrect && primaryCode != Keyboard.CODE_SHIFT
|
||||||
|
&& primaryCode != Keyboard.CODE_SWITCH_ALPHA_SYMBOL)
|
||||||
mLastComposedWord.deactivate();
|
mLastComposedWord.deactivate();
|
||||||
mEnteredText = null;
|
mEnteredText = null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue