diff options
author | 2009-12-04 12:42:59 -0800 | |
---|---|---|
committer | 2009-12-04 12:42:59 -0800 | |
commit | f4eb9bd9b1de20d57b35259fe27b75d520b850f6 (patch) | |
tree | ab5c51253774c1796a3fc96545047fa63b05281b /src | |
parent | dfd11078567e87f543e48515217997b4ced2632f (diff) | |
parent | 82c68bfbfc9442ebb7d8be842aaf8dedf5ffc76e (diff) | |
download | latinime-f4eb9bd9b1de20d57b35259fe27b75d520b850f6.tar.gz latinime-f4eb9bd9b1de20d57b35259fe27b75d520b850f6.tar.xz latinime-f4eb9bd9b1de20d57b35259fe27b75d520b850f6.zip |
am 82c68bfb: Fix for 2305181: "shift A shift M" quickly gives Am instead of AM
Merge commit '82c68bfbfc9442ebb7d8be842aaf8dedf5ffc76e' into eclair-mr2-plus-aosp
* commit '82c68bfbfc9442ebb7d8be842aaf8dedf5ffc76e':
Fix for 2305181: "shift A shift M" quickly gives Am instead of AM
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/inputmethod/latin/LatinIME.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/android/inputmethod/latin/LatinIME.java b/src/com/android/inputmethod/latin/LatinIME.java index a6cf312d2..d72710e5b 100644 --- a/src/com/android/inputmethod/latin/LatinIME.java +++ b/src/com/android/inputmethod/latin/LatinIME.java @@ -673,6 +673,7 @@ public class LatinIME extends InputMethodService } private void handleShift() { + mHandler.removeMessages(MSG_UPDATE_SHIFT_STATE); Keyboard currentKeyboard = mInputView.getKeyboard(); if (mKeyboardSwitcher.isAlphabetMode()) { // Alphabet keyboard |