diff options
author | 2013-10-21 14:40:32 +0900 | |
---|---|---|
committer | 2013-10-22 04:03:17 +0000 | |
commit | f356a25f36952f59e9918daa35f7ff6e5235a37d (patch) | |
tree | 394544931dd19c1d6229bcc427ce5dcff3e3b12e /java/src | |
parent | 47568d5e19ed907485f7cb435c3944ccc0cb4411 (diff) | |
download | latinime-f356a25f36952f59e9918daa35f7ff6e5235a37d.tar.gz latinime-f356a25f36952f59e9918daa35f7ff6e5235a37d.tar.xz latinime-f356a25f36952f59e9918daa35f7ff6e5235a37d.zip |
[DO NOT MERGE] Fix a bug where autocaps would jam auto-commit
Cherry-pick of I62955e36
Bug: 11311002
Change-Id: I5b11cb48e6dd0563fc29566fe0d27864be2beb0a
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() { |