Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 61b6271

Browse files
author
Kaushik Iska
committed
fix compile issues
1 parent 6bb7384 commit 61b6271

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

shell/platform/embedder/embedder.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1225,7 +1225,8 @@ FlutterEngineResult FlutterEngineSendPointerEvent(
12251225
for (size_t i = 0; i < events_count; ++i) {
12261226
flutter::PointerData pointer_data;
12271227
pointer_data.Clear();
1228-
pointer_data.motion_event_id = SAFE_ACCESS(current, motion_event_id, 0);
1228+
// this is only for android embedding.
1229+
pointer_data.motion_event_id = 0;
12291230
pointer_data.time_stamp = SAFE_ACCESS(current, timestamp, 0);
12301231
pointer_data.change = ToPointerDataChange(
12311232
SAFE_ACCESS(current, phase, FlutterPointerPhase::kCancel));

0 commit comments

Comments
 (0)