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

Commit 678cdbe5 authored by Amith Yamasani's avatar Amith Yamasani
Browse files

Fix build.

parent aea1b3b2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1106,8 +1106,8 @@ public class KeyboardView extends View implements View.OnClickListener {
    }

    private boolean onModifiedTouchEvent(MotionEvent me, boolean possiblePoly) {
        final int touchX = (int) me.getX() - mPaddingLeft;
        final int touchY = (int) me.getY() + mVerticalCorrection - mPaddingTop;
        int touchX = (int) me.getX() - mPaddingLeft;
        int touchY = (int) me.getY() + mVerticalCorrection - mPaddingTop;
        final int action = me.getAction();
        final long eventTime = me.getEventTime();
        mOldEventTime = eventTime;