Convert synthesized Android motion events to long and not to int. (flutter/engine#6103)

This commit is contained in:
Amir Hardon
2018-08-28 12:12:47 -07:00
committed by GitHub
parent 6911fa49d1
commit dc470dc12a

View File

@@ -254,8 +254,8 @@ public class PlatformViewsController implements MethodChannel.MethodCallHandler
}
MotionEvent event = MotionEvent.obtain(
downTime.intValue(),
eventTime.intValue(),
downTime.longValue(),
eventTime.longValue(),
action,
pointerCount,
pointerProperties,