Skip to content
Snippets Groups Projects
Commit 2a9e065f authored by Satoshi Kataoka's avatar Satoshi Kataoka
Browse files

Fix hitbox of emoji key

Bug: 10780368
Change-Id: If10c18fdb0e7f0b0460a721d55001ab0fef28664
parent 284e73bd
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment