Merge "Fix hitbox of emoji key"

This commit is contained in:
Satoshi Kataoka 2013-09-19 07:23:05 +00:00 committed by Android (Google) Code Review
commit 11ce0545ee

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