diff options
author | 2014-03-13 21:31:29 -0700 | |
---|---|---|
committer | 2014-03-13 21:31:29 -0700 | |
commit | c933ca91ff60a1a36a25e880f50ab18dc92ba7e0 (patch) | |
tree | 565f6388435e4dd60e3d495935fd51de62e23053 /java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java | |
parent | e6b0cf2a28cbdd103f81b966e5165466d63d4217 (diff) | |
parent | 5a1e351751deb67f5b11bd7b8c9b601d5bf653d9 (diff) | |
download | latinime-c933ca91ff60a1a36a25e880f50ab18dc92ba7e0.tar.gz latinime-c933ca91ff60a1a36a25e880f50ab18dc92ba7e0.tar.xz latinime-c933ca91ff60a1a36a25e880f50ab18dc92ba7e0.zip |
am 5a1e3517: Merge "[CB04] Add an event array to WordComposer."
* commit '5a1e351751deb67f5b11bd7b8c9b601d5bf653d9':
[CB04] Add an event array to WordComposer.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java index cc5611b0c..cb55aa06c 100644 --- a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java +++ b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java @@ -730,8 +730,7 @@ public final class InputLogic { resetComposingState(false /* alsoResetLastComposedWord */); } if (isComposingWord) { - // TODO: pass the entire event to the word composer. - mWordComposer.add(codePoint, inputTransaction.mEvent.mX, inputTransaction.mEvent.mY); + mWordComposer.add(inputTransaction.mEvent); // If it's the first letter, make note of auto-caps state if (mWordComposer.size() == 1) { // We pass 1 to getPreviousWordForSuggestion because we were not composing a word |