Skip to content
Snippets Groups Projects
Commit c715d95f authored by Jean Chalard's avatar Jean Chalard
Browse files

[CM2] Update beginning-of-sentence suggestions

We need to update them after separator-space, and also when
the user presses shift and they are displayed.

Bug: 15554503
Change-Id: I5596163d5cd94d3cc5f6af10a1ab2cc74b6d4279
parent deccc235
No related branches found
No related tags found
No related merge requests found
......@@ -408,6 +408,9 @@ public final class InputLogic {
case Constants.CODE_SHIFT:
performRecapitalization(inputTransaction.mSettingsValues);
inputTransaction.requireShiftUpdate(InputTransaction.SHIFT_UPDATE_NOW);
if (mSuggestedWords.mIsPrediction) {
inputTransaction.setRequiresUpdateSuggestions();
}
break;
case Constants.CODE_CAPSLOCK:
// Note: Changing keyboard to shift lock state is handled in
......@@ -815,7 +818,7 @@ public final class InputLogic {
}
startDoubleSpacePeriodCountdown(inputTransaction);
if (wasComposingWord) {
if (wasComposingWord || mSuggestedWords.isEmpty()) {
inputTransaction.setRequiresUpdateSuggestions();
}
} else {
......
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