aboutsummaryrefslogtreecommitdiffstats
path: root/common/src/com
diff options
context:
space:
mode:
authorKeisuke Kuroyanagi <ksk@google.com>2014-12-03 03:43:49 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-12-03 03:43:50 +0000
commitb0063751fc05b5466934c5e63fa5f3f2fc65429e (patch)
tree2d889129abb3742d66f94c47195a92b8eda80d5f /common/src/com
parente79d504cf521e6dd516f0d15eb29f9e61be3e85d (diff)
parent60021bbdc25b7cda864fb3d1bf47d4f0e977e7f9 (diff)
downloadlatinime-b0063751fc05b5466934c5e63fa5f3f2fc65429e.tar.gz
latinime-b0063751fc05b5466934c5e63fa5f3f2fc65429e.tar.xz
latinime-b0063751fc05b5466934c5e63fa5f3f2fc65429e.zip
Merge "Enable Quadgram for personalized dicts."
Diffstat (limited to 'common/src/com')
-rw-r--r--common/src/com/android/inputmethod/latin/common/Constants.java2
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;