mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Merge "Only update shift state if left in auto mode."
This commit is contained in:
commit
0b51fac907
@ -1793,10 +1793,19 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
|||||||
final int codePointBeforeCursor = mConnection.getCodePointBeforeCursor();
|
final int codePointBeforeCursor = mConnection.getCodePointBeforeCursor();
|
||||||
if (Character.isLetterOrDigit(codePointBeforeCursor)
|
if (Character.isLetterOrDigit(codePointBeforeCursor)
|
||||||
|| currentSettingsValues.isUsuallyFollowedBySpace(codePointBeforeCursor)) {
|
|| currentSettingsValues.isUsuallyFollowedBySpace(codePointBeforeCursor)) {
|
||||||
|
final boolean autoShiftHasBeenOverriden = mKeyboardSwitcher.getKeyboardShiftMode() !=
|
||||||
|
getCurrentAutoCapsState();
|
||||||
mSpaceState = SPACE_STATE_PHANTOM;
|
mSpaceState = SPACE_STATE_PHANTOM;
|
||||||
|
if (!autoShiftHasBeenOverriden) {
|
||||||
|
// When we change the space state, we need to update the shift state of the
|
||||||
|
// keyboard unless it has been overridden manually. This is happening for example
|
||||||
|
// after typing some letters and a period, then gesturing; the keyboard is not in
|
||||||
|
// caps mode yet, but since a gesture is starting, it should go in caps mode,
|
||||||
|
// unless the user explictly said it should not.
|
||||||
|
mKeyboardSwitcher.updateShiftState();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
mConnection.endBatchEdit();
|
mConnection.endBatchEdit();
|
||||||
mKeyboardSwitcher.updateShiftState();
|
|
||||||
mWordComposer.setCapitalizedModeAndPreviousWordAtStartComposingTime(getActualCapsMode(),
|
mWordComposer.setCapitalizedModeAndPreviousWordAtStartComposingTime(getActualCapsMode(),
|
||||||
// Prev word is 1st word before cursor
|
// Prev word is 1st word before cursor
|
||||||
getNthPreviousWordForSuggestion(currentSettingsValues, 1 /* nthPreviousWord */));
|
getNthPreviousWordForSuggestion(currentSettingsValues, 1 /* nthPreviousWord */));
|
||||||
|
Loading…
Reference in New Issue
Block a user