diff options
author | 2013-04-12 05:30:26 -0700 | |
---|---|---|
committer | 2013-04-12 05:30:26 -0700 | |
commit | cb633e37794adf59dd6ce1df97e3d5db02da6784 (patch) | |
tree | ef1e247492ec4230c25e3b21127006ef0d76ecae /java/src/com/android/inputmethod/latin/SuggestedWords.java | |
parent | 991b1ef83e8f92c29ddec6685d91c24f1875eeba (diff) | |
parent | 91bcf5eb5dcf1f2ff66cfda90832db21bce7e330 (diff) | |
download | latinime-cb633e37794adf59dd6ce1df97e3d5db02da6784.tar.gz latinime-cb633e37794adf59dd6ce1df97e3d5db02da6784.tar.xz latinime-cb633e37794adf59dd6ce1df97e3d5db02da6784.zip |
am 91bcf5eb: Merge "Restart suggestions when the cursor moves."
* commit '91bcf5eb5dcf1f2ff66cfda90832db21bce7e330':
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 |