mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Fix for 2305181: "shift A shift M" quickly gives Am instead of AM
There was a delayed changing of keyboard to lowercase after typing a shifted letter that was triggering after the user pressed shift again. Removed the delayed message when user hits shift.
This commit is contained in:
parent
84400f65ab
commit
82c68bfbfc
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user