diff options
author | 2013-04-12 12:27:50 +0000 | |
---|---|---|
committer | 2013-04-12 12:27:50 +0000 | |
commit | 91bcf5eb5dcf1f2ff66cfda90832db21bce7e330 (patch) | |
tree | ef1e247492ec4230c25e3b21127006ef0d76ecae /java/src/com/android/inputmethod/latin/SuggestedWords.java | |
parent | 02ce3dc2d11aba2b521f85223af1f870207b81dc (diff) | |
parent | 6a114fa700d3ca73c608e1291b74bbbdd5a1a7b7 (diff) | |
download | latinime-91bcf5eb5dcf1f2ff66cfda90832db21bce7e330.tar.gz latinime-91bcf5eb5dcf1f2ff66cfda90832db21bce7e330.tar.xz latinime-91bcf5eb5dcf1f2ff66cfda90832db21bce7e330.zip |
Merge "Restart suggestions when the cursor moves."
Diffstat (limited to 'java/src/com/android/inputmethod/latin/SuggestedWords.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/SuggestedWords.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/SuggestedWords.java b/java/src/com/android/inputmethod/latin/SuggestedWords.java index 3d6fe2d22..158cc1155 100644 --- a/java/src/com/android/inputmethod/latin/SuggestedWords.java +++ b/java/src/com/android/inputmethod/latin/SuggestedWords.java @@ -131,6 +131,7 @@ public final class SuggestedWords { public static final int KIND_APP_DEFINED = 6; // Suggested by the application public static final int KIND_SHORTCUT = 7; // A shortcut public static final int KIND_PREDICTION = 8; // A prediction (== a suggestion with no input) + public static final int KIND_RESUMED = 9; // A resumed suggestion (comes from a span) public final String mWord; public final int mScore; public final int mKind; // one of the KIND_* constants above |