Fix hitbox of emoji key

Bug: 10780368
Change-Id: If10c18fdb0e7f0b0460a721d55001ab0fef28664
main
Satoshi Kataoka 2013-09-19 15:37:36 +09:00
parent 284e73bd41
commit 2a9e065f1a
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ public class DynamicGridKeyboard extends Keyboard {
public void updateCorrdinates(final int x, final int y) {
mCurrentX = x;
mCurrentY = y;
getHitBox().offsetTo(x, y);
getHitBox().set(x, y, x + getWidth(), y + getHeight());
}
@Override