| Index: sky/engine/core/events/GestureEvent.cpp
|
| diff --git a/sky/engine/core/events/GestureEvent.cpp b/sky/engine/core/events/GestureEvent.cpp
|
| index 8bf0d55f90fbf6ed752e2f97f2b7220649464b6e..cd56f26e1359dff13efc7e52acaea7ad56ec6bf3 100644
|
| --- a/sky/engine/core/events/GestureEvent.cpp
|
| +++ b/sky/engine/core/events/GestureEvent.cpp
|
| @@ -74,6 +74,8 @@ GestureEvent::GestureEvent(const WebGestureEvent& event)
|
| , m_velocityX(0)
|
| , m_velocityY(0)
|
| {
|
| + m_timeStamp = event.timeStampMS;
|
| +
|
| if (event.type == WebInputEvent::GestureFlingStart) {
|
| m_velocityX = event.data.flingStart.velocityX;
|
| m_velocityY = event.data.flingStart.velocityY;
|
|
|