Skip to content

Commit

Permalink
Convert timestamp to correct unit (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
HakkyuKim authored Feb 4, 2021
1 parent 7a6dd58 commit 1c3084e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell/platform/tizen/touch_event_handler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 1c3084e

Please sign in to comment.