diff options
author | 2013-12-19 22:27:10 -0800 | |
---|---|---|
committer | 2013-12-19 22:27:10 -0800 | |
commit | e3e80aa10754bba91d9543ed492a7e542a38dc24 (patch) | |
tree | cde113cf286adfae83cd579dee52ade374776d05 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 91000283b5332c6d8818be3a65b653c262752882 (diff) | |
parent | a905fcec00f78e828c1fe9109f27cc9f149941b5 (diff) | |
download | latinime-e3e80aa10754bba91d9543ed492a7e542a38dc24.tar.gz latinime-e3e80aa10754bba91d9543ed492a7e542a38dc24.tar.xz latinime-e3e80aa10754bba91d9543ed492a7e542a38dc24.zip |
am a905fcec: [IL16] Improve getTextWithSuggestionSpan
* commit 'a905fcec00f78e828c1fe9109f27cc9f149941b5':
[IL16] Improve getTextWithSuggestionSpan
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index e9988bf5b..12950a0b2 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -2026,7 +2026,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen final String separatorString) { final SuggestedWords suggestedWords = mInputLogic.mSuggestedWords; mInputLogic.mConnection.commitText(SuggestionSpanUtils.getTextWithSuggestionSpan( - this, chosenWord, suggestedWords, mIsMainDictionaryAvailable), 1); + this, chosenWord, suggestedWords), 1); // Add the word to the user history dictionary final String prevWord = addToUserHistoryDictionary(chosenWord); // TODO: figure out here if this is an auto-correct or if the best word is actually |