am ca1c1ddd: Merge "[IL94] Remove a function and some reordering"
* commit 'ca1c1ddd4ecdca1a863dbf8274dca2fc3e91a8ac': [IL94] Remove a function and some reorderingmain
commit
4b5e56d648
|
@ -1330,15 +1330,12 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||||
|
|
||||||
// TODO[IL]: Define a clear interface for this
|
// TODO[IL]: Define a clear interface for this
|
||||||
public void setSuggestedWords(final SuggestedWords words) {
|
public void setSuggestedWords(final SuggestedWords words) {
|
||||||
mInputLogic.mSuggestedWords = words;
|
|
||||||
if (mSuggestionStripView != null) {
|
if (mSuggestionStripView != null) {
|
||||||
mSuggestionStripView.setSuggestions(words);
|
mSuggestionStripView.setSuggestions(words);
|
||||||
mKeyboardSwitcher.onAutoCorrectionStateChanged(words.mWillAutoCorrect);
|
mKeyboardSwitcher.onAutoCorrectionStateChanged(words.mWillAutoCorrect);
|
||||||
}
|
}
|
||||||
setAutoCorrectionIndicator(words.mWillAutoCorrect);
|
mInputLogic.mSuggestedWords = words;
|
||||||
}
|
final boolean newAutoCorrectionIndicator = words.mWillAutoCorrect;
|
||||||
|
|
||||||
private void setAutoCorrectionIndicator(final boolean newAutoCorrectionIndicator) {
|
|
||||||
// Put a blue underline to a word in TextView which will be auto-corrected.
|
// Put a blue underline to a word in TextView which will be auto-corrected.
|
||||||
if (mInputLogic.mIsAutoCorrectionIndicatorOn != newAutoCorrectionIndicator
|
if (mInputLogic.mIsAutoCorrectionIndicatorOn != newAutoCorrectionIndicator
|
||||||
&& mInputLogic.mWordComposer.isComposingWord()) {
|
&& mInputLogic.mWordComposer.isComposingWord()) {
|
||||||
|
|
Loading…
Reference in New Issue