mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
[IL106] Inline a now useless method.
Bug: 8636060 Change-Id: Ic8e0225206358680aa0de421f17ab443c888036d
This commit is contained in:
parent
fa7075768d
commit
ac84fe642e
@ -1519,18 +1519,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void unsetIsAutoCorrectionIndicatorOnAndCallShowSuggestionStrip(
|
|
||||||
final SuggestedWords suggestedWords) {
|
|
||||||
// Note that it's very important here that suggestedWords.mWillAutoCorrect is false.
|
|
||||||
// We never want to auto-correct on a resumed suggestion. Please refer to the three places
|
|
||||||
// above in restartSuggestionsOnWordTouchedByCursor() where suggestedWords is affected.
|
|
||||||
// We also need to unset mIsAutoCorrectionIndicatorOn to avoid showSuggestionStrip touching
|
|
||||||
// the text to adapt it.
|
|
||||||
// TODO: remove mIsAutoCorrectionIndicatorOn (see comment on definition)
|
|
||||||
mInputLogic.mIsAutoCorrectionIndicatorOn = false;
|
|
||||||
mHandler.showSuggestionStrip(suggestedWords);
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: Make this private
|
// TODO: Make this private
|
||||||
// Outside LatinIME, only used by the {@link InputTestsBase} test suite.
|
// Outside LatinIME, only used by the {@link InputTestsBase} test suite.
|
||||||
@UsedForTesting
|
@UsedForTesting
|
||||||
|
@ -1217,8 +1217,8 @@ public final class InputLogic {
|
|||||||
// Since there is only one word, willAutoCorrect is false.
|
// Since there is only one word, willAutoCorrect is false.
|
||||||
suggestedWords = suggestedWordsIncludingTypedWord;
|
suggestedWords = suggestedWordsIncludingTypedWord;
|
||||||
}
|
}
|
||||||
mLatinIME.unsetIsAutoCorrectionIndicatorOnAndCallShowSuggestionStrip(
|
mIsAutoCorrectionIndicatorOn = false;
|
||||||
suggestedWords);
|
mLatinIME.mHandler.showSuggestionStrip(suggestedWords);
|
||||||
}});
|
}});
|
||||||
} else {
|
} else {
|
||||||
// We found suggestion spans in the word. We'll create the SuggestedWords out of
|
// We found suggestion spans in the word. We'll create the SuggestedWords out of
|
||||||
@ -1227,7 +1227,8 @@ public final class InputLogic {
|
|||||||
true /* typedWordValid */, false /* willAutoCorrect */,
|
true /* typedWordValid */, false /* willAutoCorrect */,
|
||||||
false /* isPunctuationSuggestions */, false /* isObsoleteSuggestions */,
|
false /* isPunctuationSuggestions */, false /* isObsoleteSuggestions */,
|
||||||
false /* isPrediction */, SuggestedWords.NOT_A_SEQUENCE_NUMBER);
|
false /* isPrediction */, SuggestedWords.NOT_A_SEQUENCE_NUMBER);
|
||||||
mLatinIME.unsetIsAutoCorrectionIndicatorOnAndCallShowSuggestionStrip(suggestedWords);
|
mIsAutoCorrectionIndicatorOn = false;
|
||||||
|
mLatinIME.mHandler.showSuggestionStrip(suggestedWords);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user