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/settings/SettingsValues.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 'java/src/com/android/inputmethod/latin/settings/SettingsValues.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/settings/SettingsValues.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/settings/SettingsValues.java b/java/src/com/android/inputmethod/latin/settings/SettingsValues.java index 26415e7d4..c3755792c 100644 --- a/java/src/com/android/inputmethod/latin/settings/SettingsValues.java +++ b/java/src/com/android/inputmethod/latin/settings/SettingsValues.java @@ -96,6 +96,7 @@ public class SettingsValues { public final int mKeyPreviewPopupDismissDelay; private final boolean mAutoCorrectEnabled; public final float mAutoCorrectionThreshold; + public final float mPlausibilityThreshold; public final boolean mAutoCorrectionEnabledPerUserSettings; private final boolean mSuggestionsEnabledPerUserSettings; private final AsyncResultHolder<AppWorkaroundsUtils> mAppWorkarounds; @@ -172,6 +173,7 @@ public class SettingsValues { Settings.PREF_ENABLE_EMOJI_ALT_PHYSICAL_KEY, true); mAutoCorrectionThreshold = readAutoCorrectionThreshold(res, autoCorrectionThresholdRawValue); + mPlausibilityThreshold = Settings.readPlausibilityThreshold(res); mGestureInputEnabled = Settings.readGestureInputEnabled(prefs, res); mGestureTrailEnabled = prefs.getBoolean(Settings.PREF_GESTURE_PREVIEW_TRAIL, true); mGestureFloatingPreviewTextEnabled = !mInputAttributes.mDisableGestureFloatingPreviewText |