Skip to content

Commit

Permalink
Make OnShouldReceiveMapTouch static (#11974)
Browse files Browse the repository at this point in the history
  • Loading branch information
PureWeen authored Dec 8, 2022
1 parent 63f2ed5 commit d701004
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/maps/src/Platform/iOS/MauiMKMapView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ void OnCalloutClicked(IMKAnnotation annotation)
return mapElement?.ToHandler(handler?.MauiContext!).PlatformView as T;
}

bool OnShouldReceiveMapTouch(UIGestureRecognizer recognizer, UITouch touch)
static bool OnShouldReceiveMapTouch(UIGestureRecognizer recognizer, UITouch touch)
{
if (touch.View is MKAnnotationView)
return false;
Expand Down

0 comments on commit d701004

Please sign in to comment.