diff options
author | 2014-12-03 03:43:49 +0000 | |
---|---|---|
committer | 2014-12-03 03:43:50 +0000 | |
commit | b0063751fc05b5466934c5e63fa5f3f2fc65429e (patch) | |
tree | 2d889129abb3742d66f94c47195a92b8eda80d5f /common/src/com/android/inputmethod/latin | |
parent | e79d504cf521e6dd516f0d15eb29f9e61be3e85d (diff) | |
parent | 60021bbdc25b7cda864fb3d1bf47d4f0e977e7f9 (diff) | |
download | latinime-b0063751fc05b5466934c5e63fa5f3f2fc65429e.tar.gz latinime-b0063751fc05b5466934c5e63fa5f3f2fc65429e.tar.xz latinime-b0063751fc05b5466934c5e63fa5f3f2fc65429e.zip |
Merge "Enable Quadgram for personalized dicts."
Diffstat (limited to 'common/src/com/android/inputmethod/latin')
-rw-r--r-- | common/src/com/android/inputmethod/latin/common/Constants.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/com/android/inputmethod/latin/common/Constants.java b/common/src/com/android/inputmethod/latin/common/Constants.java index abc377a84..a860d3560 100644 --- a/common/src/com/android/inputmethod/latin/common/Constants.java +++ b/common/src/com/android/inputmethod/latin/common/Constants.java @@ -179,7 +179,7 @@ public final class Constants { // (MAX_PREV_WORD_COUNT_FOR_N_GRAM + 1)-gram is supported in Java side. Needs to modify // MAX_PREV_WORD_COUNT_FOR_N_GRAM in native/jni/src/defines.h for suggestions. - public static final int MAX_PREV_WORD_COUNT_FOR_N_GRAM = 2; + public static final int MAX_PREV_WORD_COUNT_FOR_N_GRAM = 3; // Key events coming any faster than this are long-presses. public static final int LONG_PRESS_MILLISECONDS = 200; |