Merge "Disable auto-correction when application auto completion has set"
This commit is contained in:
commit
386899a8b0
1 changed files with 2 additions and 2 deletions
|
@ -831,8 +831,8 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
|
|||
|
||||
SuggestedWords.Builder builder = new SuggestedWords.Builder()
|
||||
.setApplicationSpecifiedCompletions(applicationSpecifiedCompletions)
|
||||
.setTypedWordValid(true)
|
||||
.setHasMinimalSuggestion(true);
|
||||
.setTypedWordValid(false)
|
||||
.setHasMinimalSuggestion(false);
|
||||
// When in fullscreen mode, show completions generated by the application
|
||||
setSuggestions(builder.build());
|
||||
mBestWord = null;
|
||||
|
|
Loading…
Reference in a new issue