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

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

Merge "[IL94] Remove a function and some reordering"

parents 9909d6aa 5b5e877e
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -1330,15 +1330,12 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen

    // TODO[IL]: Define a clear interface for this
    public void setSuggestedWords(final SuggestedWords words) {
        mInputLogic.mSuggestedWords = words;
        if (mSuggestionStripView != null) {
            mSuggestionStripView.setSuggestions(words);
            mKeyboardSwitcher.onAutoCorrectionStateChanged(words.mWillAutoCorrect);
        }
        setAutoCorrectionIndicator(words.mWillAutoCorrect);
    }

    private void setAutoCorrectionIndicator(final boolean newAutoCorrectionIndicator) {
        mInputLogic.mSuggestedWords = words;
        final boolean newAutoCorrectionIndicator = words.mWillAutoCorrect;
        // Put a blue underline to a word in TextView which will be auto-corrected.
        if (mInputLogic.mIsAutoCorrectionIndicatorOn != newAutoCorrectionIndicator
                && mInputLogic.mWordComposer.isComposingWord()) {