diff options
author | 2013-08-20 11:05:09 +0000 | |
---|---|---|
committer | 2013-08-20 11:05:09 +0000 | |
commit | 3f15c41d88c1060642cec87f02c3cdfd5b4c1cb8 (patch) | |
tree | 8d9ff1cfc0b9f310e7df556cbb081a827c0617c1 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 33f5f0df8b458269177d8f984d1050c0a20001c2 (diff) | |
parent | ef1e363016623ccf409c8c270f2c1e35a67734c9 (diff) | |
download | latinime-3f15c41d88c1060642cec87f02c3cdfd5b4c1cb8.tar.gz latinime-3f15c41d88c1060642cec87f02c3cdfd5b4c1cb8.tar.xz latinime-3f15c41d88c1060642cec87f02c3cdfd5b4c1cb8.zip |
Merge "[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.java | 3 |
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 */)); } } } |