From 6c88d523ab8aa4a2b8fa573408149711773a9c85 Mon Sep 17 00:00:00 2001 From: Pavel Yakovlev Date: Fri, 1 Mar 2019 20:22:18 +0300 Subject: [PATCH] [iOS] Fix tapping a ViewCell after close ContextActionMenu (#5425) fixes #4987 --- Xamarin.Forms.Platform.iOS/ContextScrollViewDelegate.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Xamarin.Forms.Platform.iOS/ContextScrollViewDelegate.cs b/Xamarin.Forms.Platform.iOS/ContextScrollViewDelegate.cs index 82a6747..f342e02 100644 --- a/Xamarin.Forms.Platform.iOS/ContextScrollViewDelegate.cs +++ b/Xamarin.Forms.Platform.iOS/ContextScrollViewDelegate.cs @@ -179,7 +179,7 @@ namespace Xamarin.Forms.Platform.iOS table.AddGestureRecognizer(_globalCloser); _closer = new UITapGestureRecognizer(close); - contentCell.AddGestureRecognizer(_closer); + contentCell.ContentCell.AddGestureRecognizer(_closer); } } } -- 2.7.4