Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd7422f4 authored by Jean Chalard's avatar Jean Chalard Committed by Android (Google) Code Review
Browse files

Merge "Fix a pernicious bug with caps."

parents 52c20927 f735117d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -178,6 +178,8 @@ public final class KeyboardState {
            if (!state.mIsAlphabetShiftLocked) {
                setShifted(state.mShiftMode);
            }
            // TODO: is this the right place to do this? Should we do this in setShift* instead?
            mSwitchActions.requestUpdatingShiftState();
        } else {
            mPrevMainKeyboardWasShiftLocked = state.mIsAlphabetShiftLocked;
        }
+1 −0
Original line number Diff line number Diff line
@@ -2929,6 +2929,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
            return;
        }
        tryFixLyingCursorPosition();
        mKeyboardSwitcher.updateShiftState();
        if (tryResumeSuggestions) mHandler.postResumeSuggestions();
    }