Unverified Commit 66c5e2bf authored by dima.avdeev's avatar dima.avdeev Committed by GitHub

fix iOS pointer event timestamp (#685)

parent e825dd01
...@@ -220,7 +220,7 @@ class SkikoUIView : UIView, UIKeyInputProtocol, UITextInputProtocol, ...@@ -220,7 +220,7 @@ class SkikoUIView : UIView, UIKeyInputProtocol, UITextInputProtocol,
x = pointers.centroidX, x = pointers.centroidX,
y = pointers.centroidY, y = pointers.centroidY,
kind = kind, kind = kind,
timestamp = event.timestamp.toLong() * 1_000, timestamp = (event.timestamp * 1_000).toLong(),
pointers = pointers, pointers = pointers,
platform = event platform = event
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment