aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-08-20 04:06:59 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-08-20 04:06:59 -0700
commit197a883f56cf2e1c2a339bf3aa16aabb20725941 (patch)
tree29189e9ec4469acf7ee1f8bc36bb9107ce7eb899 /java/src/com/android/inputmethod/latin/LatinIME.java
parent7abed29a7ad8d8f44b0d07fc66e929abf26ac8e8 (diff)
parent3f15c41d88c1060642cec87f02c3cdfd5b4c1cb8 (diff)
downloadlatinime-197a883f56cf2e1c2a339bf3aa16aabb20725941.tar.gz
latinime-197a883f56cf2e1c2a339bf3aa16aabb20725941.tar.xz
latinime-197a883f56cf2e1c2a339bf3aa16aabb20725941.zip
am 3f15c41d: Merge "[AC1] Add a memory of where to cut the first word."
* commit '3f15c41d88c1060642cec87f02c3cdfd5b4c1cb8': [AC1] Add a memory of where to cut the first word.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index ae2221950..5172c0825 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -2614,7 +2614,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
if (!TextUtils.equals(s, typedWord)) {
suggestions.add(new SuggestedWordInfo(s,
SuggestionStripView.MAX_SUGGESTIONS - i,
- SuggestedWordInfo.KIND_RESUMED, Dictionary.TYPE_RESUMED));
+ SuggestedWordInfo.KIND_RESUMED, Dictionary.TYPE_RESUMED,
+ SuggestedWordInfo.NOT_AN_INDEX /* indexOfTouchPointOfSecondWord */));
}
}
}