diff options
author | 2013-10-21 23:36:49 -0700 | |
---|---|---|
committer | 2013-10-21 23:36:49 -0700 | |
commit | 238941991df521a6c120c6ff2e1a8ae46e8d4823 (patch) | |
tree | 2d6d7562a8d9de933e378138b45faea72838d9b2 /java/src | |
parent | 1c5f5eca9d6b26fd599523acb203dc4aa846bc89 (diff) | |
parent | f356a25f36952f59e9918daa35f7ff6e5235a37d (diff) | |
download | latinime-238941991df521a6c120c6ff2e1a8ae46e8d4823.tar.gz latinime-238941991df521a6c120c6ff2e1a8ae46e8d4823.tar.xz latinime-238941991df521a6c120c6ff2e1a8ae46e8d4823.zip |
am f356a25f: [DO NOT MERGE] Fix a bug where autocaps would jam auto-commit
* commit 'f356a25f36952f59e9918daa35f7ff6e5235a37d':
[DO NOT MERGE] Fix a bug where autocaps would jam auto-commit
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/Suggest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/Suggest.java b/java/src/com/android/inputmethod/latin/Suggest.java index c270d47d0..88c83fc1f 100644 --- a/java/src/com/android/inputmethod/latin/Suggest.java +++ b/java/src/com/android/inputmethod/latin/Suggest.java @@ -475,7 +475,7 @@ public final class Suggest { } return new SuggestedWordInfo(sb.toString(), wordInfo.mScore, wordInfo.mKind, wordInfo.mSourceDict, wordInfo.mIndexOfTouchPointOfSecondWord, - SuggestedWordInfo.NOT_A_CONFIDENCE /* autoCommitFirstWordConfidence */); + wordInfo.mAutoCommitFirstWordConfidence); } public void close() { |