Skip to content
Snippets Groups Projects
Commit 63e442cf authored by Jean Chalard's avatar Jean Chalard Committed by Android Git Automerger
Browse files

am 5fca38c5: Merge "Small performance improvement / minor bugfix"

* commit '5fca38c5':
  Small performance improvement / minor bugfix
parents 9a0e877c 5fca38c5
No related branches found
No related tags found
No related merge requests found
......@@ -161,8 +161,7 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
mPositionalInfoForUserDictPendingAddition = null;
private final WordComposer mWordComposer = new WordComposer();
private final RichInputConnection mConnection = new RichInputConnection(this);
private RecapitalizeStatus mRecapitalizeStatus = new RecapitalizeStatus(-1, -1, "",
Locale.getDefault(), ""); // Dummy object that will match no real recapitalize
private RecapitalizeStatus mRecapitalizeStatus = null;
// Keep track of the last selection range to decide if we need to show word alternatives
private static final int NOT_A_CURSOR_POSITION = -1;
......@@ -925,7 +924,8 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
// We moved the cursor. If we are touching a word, we need to resume suggestion.
mHandler.postResumeSuggestions();
// Reset the last recapitalization.
mRecapitalizeStatus = null;
mKeyboardSwitcher.updateShiftState();
}
mExpectingUpdateSelection = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment