Have empty suggestions go through setNeutralSuggestions.
Bug: 12865205 Change-Id: If17a390c445d0820325a9b16cc4f2f27a361187amain
parent
4e6f72cb80
commit
2cbf152986
|
@ -1401,10 +1401,12 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||||
// because it may differ from mWordComposer.mTypedWord.
|
// because it may differ from mWordComposer.mTypedWord.
|
||||||
autoCorrection = sourceSuggestedWords.mTypedWord;
|
autoCorrection = sourceSuggestedWords.mTypedWord;
|
||||||
}
|
}
|
||||||
if (SuggestedWords.EMPTY != suggestedWords) {
|
if (SuggestedWords.EMPTY == suggestedWords) {
|
||||||
|
setNeutralSuggestionStrip();
|
||||||
|
} else {
|
||||||
mInputLogic.mWordComposer.setAutoCorrection(autoCorrection);
|
mInputLogic.mWordComposer.setAutoCorrection(autoCorrection);
|
||||||
}
|
|
||||||
setSuggestedWords(suggestedWords, isSuggestionsStripVisible());
|
setSuggestedWords(suggestedWords, isSuggestionsStripVisible());
|
||||||
|
}
|
||||||
// Cache the auto-correction in accessibility code so we can speak it if the user
|
// Cache the auto-correction in accessibility code so we can speak it if the user
|
||||||
// touches a key that will insert it.
|
// touches a key that will insert it.
|
||||||
AccessibilityUtils.getInstance().setAutoCorrection(suggestedWords,
|
AccessibilityUtils.getInstance().setAutoCorrection(suggestedWords,
|
||||||
|
|
Loading…
Reference in New Issue