Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Fixes #3637 Null check the alphabetic Caps Keyboard when switching shift #3639

Merged
merged 2 commits into from
Jul 7, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ private void handleText(String aText, boolean skipCase) {
postInputCommand(() -> connection.commitText(text, 1));
}

if (!mIsCapsLock && mCurrentKeyboard.getAlphabeticCapKeyboard() == null) {
daoshengmu marked this conversation as resolved.
Show resolved Hide resolved
if (!mIsCapsLock) {
handleShift(false);
}

Expand Down