diff options
author | 2013-10-21 23:39:39 -0700 | |
---|---|---|
committer | 2013-10-21 23:39:39 -0700 | |
commit | 7d0d203d205433c098e46e56e265009c13dcdeb1 (patch) | |
tree | 2d6d7562a8d9de933e378138b45faea72838d9b2 /java/src | |
parent | f099c7e3d3c378399626c975c54bd00b1b14d0f0 (diff) | |
parent | 238941991df521a6c120c6ff2e1a8ae46e8d4823 (diff) | |
download | latinime-7d0d203d205433c098e46e56e265009c13dcdeb1.tar.gz latinime-7d0d203d205433c098e46e56e265009c13dcdeb1.tar.xz latinime-7d0d203d205433c098e46e56e265009c13dcdeb1.zip |
am 23894199: am f356a25f: [DO NOT MERGE] Fix a bug where autocaps would jam auto-commit
* commit '238941991df521a6c120c6ff2e1a8ae46e8d4823':
[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() { |