summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.iOS
diff options
context:
space:
mode:
authorJason Smith <jason.smith@xamarin.com>2016-04-04 15:22:30 -0700
committerJason Smith <jason.smith@xamarin.com>2016-04-04 15:22:30 -0700
commita6964ab96f139aa8c6c1eea9b62dfebb6962c11c (patch)
tree1bed7900530b4911850ad4463dd86423616708e5 /Xamarin.Forms.Platform.iOS
parentbcf7067324214e2e6ae7453e9411d698e72cf1a0 (diff)
parent16887287375dd5348d5800a14b92116ccfeba220 (diff)
downloadxamarin-forms-a6964ab96f139aa8c6c1eea9b62dfebb6962c11c.tar.gz
xamarin-forms-a6964ab96f139aa8c6c1eea9b62dfebb6962c11c.tar.bz2
xamarin-forms-a6964ab96f139aa8c6c1eea9b62dfebb6962c11c.zip
Merge pull request #20 from xamarin/fix-bugzilla21177beta-2.2.0-pre1
[iOS] PageRenderer no longer swallows touches
Diffstat (limited to 'Xamarin.Forms.Platform.iOS')
-rw-r--r--Xamarin.Forms.Platform.iOS/Renderers/PageRenderer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.iOS/Renderers/PageRenderer.cs b/Xamarin.Forms.Platform.iOS/Renderers/PageRenderer.cs
index ddc0d39e..12a131f4 100644
--- a/Xamarin.Forms.Platform.iOS/Renderers/PageRenderer.cs
+++ b/Xamarin.Forms.Platform.iOS/Renderers/PageRenderer.cs
@@ -94,7 +94,7 @@ namespace Xamarin.Forms.Platform.iOS
uiTapGestureRecognizer.ShouldRecognizeSimultaneously = (recognizer, gestureRecognizer) => true;
uiTapGestureRecognizer.ShouldReceiveTouch = OnShouldReceiveTouch;
- uiTapGestureRecognizer.DelaysTouchesBegan = uiTapGestureRecognizer.DelaysTouchesEnded = false;
+ uiTapGestureRecognizer.DelaysTouchesBegan = uiTapGestureRecognizer.DelaysTouchesEnded = uiTapGestureRecognizer.CancelsTouchesInView = false;
View.AddGestureRecognizer(uiTapGestureRecognizer);
UpdateBackground();