aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/Dictionary.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-04-12 05:30:26 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-04-12 05:30:26 -0700
commitcb633e37794adf59dd6ce1df97e3d5db02da6784 (patch)
treeef1e247492ec4230c25e3b21127006ef0d76ecae /java/src/com/android/inputmethod/latin/Dictionary.java
parent991b1ef83e8f92c29ddec6685d91c24f1875eeba (diff)
parent91bcf5eb5dcf1f2ff66cfda90832db21bce7e330 (diff)
downloadlatinime-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/Dictionary.java')
-rw-r--r--java/src/com/android/inputmethod/latin/Dictionary.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/Dictionary.java b/java/src/com/android/inputmethod/latin/Dictionary.java
index ff3d83fad..9691fa231 100644
--- a/java/src/com/android/inputmethod/latin/Dictionary.java
+++ b/java/src/com/android/inputmethod/latin/Dictionary.java
@@ -37,6 +37,8 @@ public abstract class Dictionary {
public static final String TYPE_USER = "user";
// User history dictionary internal to LatinIME.
public static final String TYPE_USER_HISTORY = "history";
+ // Spawned by resuming suggestions. Comes from a span that was in the TextView.
+ public static final String TYPE_RESUMED = "resumed";
protected final String mDictType;
public Dictionary(final String dictType) {