Fix build.
This commit is contained in:
@ -1106,8 +1106,8 @@ public class KeyboardView extends View implements View.OnClickListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private boolean onModifiedTouchEvent(MotionEvent me, boolean possiblePoly) {
|
private boolean onModifiedTouchEvent(MotionEvent me, boolean possiblePoly) {
|
||||||
final int touchX = (int) me.getX() - mPaddingLeft;
|
int touchX = (int) me.getX() - mPaddingLeft;
|
||||||
final int touchY = (int) me.getY() + mVerticalCorrection - mPaddingTop;
|
int touchY = (int) me.getY() + mVerticalCorrection - mPaddingTop;
|
||||||
final int action = me.getAction();
|
final int action = me.getAction();
|
||||||
final long eventTime = me.getEventTime();
|
final long eventTime = me.getEventTime();
|
||||||
mOldEventTime = eventTime;
|
mOldEventTime = eventTime;
|
||||||
|
Reference in New Issue
Block a user