From eb3185b0be03ddfb4d3bdca3df2ba95b07c52aca Mon Sep 17 00:00:00 2001 From: Hakkyu Kim Date: Thu, 4 Feb 2021 09:16:12 +0900 Subject: [PATCH] Convert timestamp to correct unit --- shell/platform/tizen/touch_event_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/platform/tizen/touch_event_handler.cc b/shell/platform/tizen/touch_event_handler.cc index e919566c463ae..117cd9a209b84 100644 --- a/shell/platform/tizen/touch_event_handler.cc +++ b/shell/platform/tizen/touch_event_handler.cc @@ -65,7 +65,7 @@ void TouchEventHandler::SendFlutterPointerEvent(FlutterPointerPhase phase, } event.scroll_delta_x = scroll_delta_x; event.scroll_delta_y = scroll_delta_y; - event.timestamp = timestamp / 1000; + event.timestamp = timestamp * 1000; FlutterEngineSendPointerEvent(engine_->flutter_engine, &event, 1); }