Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2a9e065f authored by Satoshi Kataoka's avatar Satoshi Kataoka
Browse files

Fix hitbox of emoji key

Bug: 10780368
Change-Id: If10c18fdb0e7f0b0460a721d55001ab0fef28664
parent 284e73bd
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -193,7 +193,7 @@ public class DynamicGridKeyboard extends Keyboard {
        public void updateCorrdinates(final int x, final int y) {
        public void updateCorrdinates(final int x, final int y) {
            mCurrentX = x;
            mCurrentX = x;
            mCurrentY = y;
            mCurrentY = y;
            getHitBox().offsetTo(x, y);
            getHitBox().set(x, y, x + getWidth(), y + getHeight());
        }
        }


        @Override
        @Override