Merge "Fix hitbox of emoji key"

main
Satoshi Kataoka 2013-09-19 07:23:05 +00:00 committed by Android (Google) Code Review
commit 11ce0545ee
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