aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-11-04 11:24:26 +0000
committerTadashi G. Takaoka <takaoka@google.com>2014-11-04 11:24:26 +0000
commita5d24336bf7830677d2bb2403cdaf1b2d8796f8a (patch)
tree63d63b39e93cce5bfd37d567806ec05a099af0b0 /java/src/com/android/inputmethod
parent953858d6153d844226e4b8352a63193c29606dd7 (diff)
downloadlatinime-a5d24336bf7830677d2bb2403cdaf1b2d8796f8a.tar.gz
latinime-a5d24336bf7830677d2bb2403cdaf1b2d8796f8a.tar.xz
latinime-a5d24336bf7830677d2bb2403cdaf1b2d8796f8a.zip
Revert "Fix Emoji key feedback"
This reverts commit 953858d6153d844226e4b8352a63193c29606dd7. The original CL should be split into two. Change-Id: Ic1d032e2964a1b9bb44d98bdb8573c6cb47a865c
Diffstat (limited to 'java/src/com/android/inputmethod')
-rw-r--r--java/src/com/android/inputmethod/keyboard/emoji/EmojiPageKeyboardView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/emoji/EmojiPageKeyboardView.java b/java/src/com/android/inputmethod/keyboard/emoji/EmojiPageKeyboardView.java
index 09313f811..54d3e3b88 100644
--- a/java/src/com/android/inputmethod/keyboard/emoji/EmojiPageKeyboardView.java
+++ b/java/src/com/android/inputmethod/keyboard/emoji/EmojiPageKeyboardView.java
@@ -148,7 +148,7 @@ final class EmojiPageKeyboardView extends KeyboardView implements
void callListenerOnPressKey(final Key pressedKey) {
mPendingKeyDown = null;
- pressedKey.onPressed();
+ pressedKey.onReleased();
invalidateKey(pressedKey);
mListener.onPressKey(pressedKey);
}