diff options
author | 2011-02-07 20:40:34 +0900 | |
---|---|---|
committer | 2011-02-08 11:43:39 +0900 | |
commit | 5ef096f5f601c759e8a4a888aaca91ac5ccd9974 (patch) | |
tree | 921d040d25bb2bdfe0d2644a3a5871da8fd5d4d3 /tests/src/com/android/inputmethod/latin/SuggestHelper.java | |
parent | 8dac5fe98d586b5bea9f18ed3d8f2cc4d3588102 (diff) | |
download | latinime-5ef096f5f601c759e8a4a888aaca91ac5ccd9974.tar.gz latinime-5ef096f5f601c759e8a4a888aaca91ac5ccd9974.tar.xz latinime-5ef096f5f601c759e8a4a888aaca91ac5ccd9974.zip |
Move and rename computeProximityThreshold
Move and rename KeyboardView.computeProximityThreshold to
KeyDetector.getMostCommonKeyWidth. And make it public for unit test
use.
This is a part of multi-project change (If751659a, Idb18f362)
Bug: 3414081
Change-Id: If751659a53c7412f836d6d28866760ffe84b179b
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/SuggestHelper.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/SuggestHelper.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/com/android/inputmethod/latin/SuggestHelper.java b/tests/src/com/android/inputmethod/latin/SuggestHelper.java index c734f07fd..bcc0d6cde 100644 --- a/tests/src/com/android/inputmethod/latin/SuggestHelper.java +++ b/tests/src/com/android/inputmethod/latin/SuggestHelper.java @@ -41,7 +41,7 @@ public class SuggestHelper { public SuggestHelper(String tag, Context context, int resId) { TAG = tag; mSuggest = new Suggest(context, resId); - mSuggest.setAutoTextEnabled(false); + mSuggest.setQuickFixesEnabled(false); mSuggest.setCorrectionMode(Suggest.CORRECTION_FULL_BIGRAM); } |