diff options
author | 2014-11-26 10:41:33 +0000 | |
---|---|---|
committer | 2014-11-26 10:41:33 +0000 | |
commit | 88e021f2ef7d3a7e1df60d4cdd08a6f6bcc99c57 (patch) | |
tree | d6edf8e485c4117cabecdce4dc38a1c5976784e8 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 9ab179a14247a91110940c3fe27da4004e6b952f (diff) | |
parent | 56577461d63ad3618598ceddfb9a73b797917061 (diff) | |
download | latinime-88e021f2ef7d3a7e1df60d4cdd08a6f6bcc99c57.tar.gz latinime-88e021f2ef7d3a7e1df60d4cdd08a6f6bcc99c57.tar.xz latinime-88e021f2ef7d3a7e1df60d4cdd08a6f6bcc99c57.zip |
am 56577461: Allow whitelist changes when no close word
* commit '56577461d63ad3618598ceddfb9a73b797917061':
Allow whitelist changes when no close word
Diffstat (limited to '')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 7b7b6d35e..66746cb6a 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -708,6 +708,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen mInputLogic.mSuggest.setAutoCorrectionThreshold( settingsValues.mAutoCorrectionThreshold); } + mInputLogic.mSuggest.setPlausibilityThreshold(settingsValues.mPlausibilityThreshold); } /** @@ -1007,6 +1008,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen suggest.setAutoCorrectionThreshold( currentSettingsValues.mAutoCorrectionThreshold); } + suggest.setPlausibilityThreshold(currentSettingsValues.mPlausibilityThreshold); switcher.loadKeyboard(editorInfo, currentSettingsValues, getCurrentAutoCapsState(), getCurrentRecapitalizeState()); |