Fix EmojiPageKeyboardView onPress bug

Change-Id: I110f36e0547be4957656217c42a8dafd9359b700
main
Tadashi G. Takaoka 2014-11-04 20:27:39 +09:00
parent 3481cfc81d
commit b1439c2872
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ final class EmojiPageKeyboardView extends KeyboardView implements
void callListenerOnPressKey(final Key pressedKey) {
mPendingKeyDown = null;
pressedKey.onReleased();
pressedKey.onPressed();
invalidateKey(pressedKey);
mListener.onPressKey(pressedKey);
}