Skip to content

Commit 28c2205

Browse files
committed
Update MauiGestureRecognizerEventsBinder.cs
1 parent 8e32be7 commit 28c2205

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Sentry.Maui/Internal/MauiGestureRecognizerEventsBinder.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,10 @@ private static void OnPointerEnteredGesture(object? sender, PointerEventArgs e)
141141

142142
private static IEnumerable<(string Key, string Value)> ToPointerData(PointerEventArgs e) =>
143143
[
144-
// some of the data here may have some challenges being pulled out
145144
#if ANDROID
146145
("MotionEventAction", e.PlatformArgs?.MotionEvent.Action.ToString() ?? string.Empty)
147-
//("MotionEventActionButton", e.PlatformArgs?.MotionEvent.ActionButton.ToString() ?? String.Empty)
148146
#elif IOS
149-
("State", e.PlatformArgs?.GestureRecognizer.State.ToString() ?? string.Empty),
150-
//("ButtonMask", e.PlatformArgs?.GestureRecognizer.ButtonMask.ToString() ?? String.Empty)
147+
("State", e.PlatformArgs?.GestureRecognizer.State.ToString() ?? string.Empty)
151148
#endif
152149
];
153150

0 commit comments

Comments
 (0)