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

Commit ac25fcac authored by Jean Chalard's avatar Jean Chalard
Browse files

Display punctuation suggestions on cursor move

...if punctuation suggestions are requested.

Fixes the symptom, but not the root cause of
Bug: 6981089

Change-Id: I683a7451c99457829cb4e5a762f43548ff89a535
parent 2e4713a5
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -1045,7 +1045,11 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
    // the composing word, reset the last composed word, tell the inputconnection about it.
    private void resetEntireInputState() {
        resetComposingState(true /* alsoResetLastComposedWord */);
        if (mCurrentSettings.mBigramPredictionEnabled) {
            clearSuggestionStrip();
        } else {
            setSuggestionStrip(mCurrentSettings.mSuggestPuncList, false);
        }
        mConnection.finishComposingText();
    }