summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.iOS/ContextScrollViewDelegate.cs
diff options
context:
space:
mode:
authorSamantha Houts <samantha@teamredwall.com>2016-04-11 18:05:28 -0700
committerJason Smith <jason.smith@xamarin.com>2016-04-11 18:05:28 -0700
commit90d8976cfdadc1582e366c0b6f6611d6fe83f5ff (patch)
treee2ebd71214c4855ec5862d9c2c13f3a90051ae31 /Xamarin.Forms.Platform.iOS/ContextScrollViewDelegate.cs
parentdf2427091536ed8065e50f7bffebbc5707971803 (diff)
downloadxamarin-forms-90d8976cfdadc1582e366c0b6f6611d6fe83f5ff.tar.gz
xamarin-forms-90d8976cfdadc1582e366c0b6f6611d6fe83f5ff.tar.bz2
xamarin-forms-90d8976cfdadc1582e366c0b6f6611d6fe83f5ff.zip
[iOS] Resolve Warning 0108 (#64)
[iOS] Resolve warning 0114 `Selected` is overridable, but current behavior is to hide it, so we're going to add the `new` keyword. [iOS] Resolve warning 0618 [iOS] Resolve warning 0414, 0649, 0169 [iOS] Resolve warning 0105 Update dispose to override base dispose (#67) Add an optional extended description…
Diffstat (limited to 'Xamarin.Forms.Platform.iOS/ContextScrollViewDelegate.cs')
-rw-r--r--Xamarin.Forms.Platform.iOS/ContextScrollViewDelegate.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.iOS/ContextScrollViewDelegate.cs b/Xamarin.Forms.Platform.iOS/ContextScrollViewDelegate.cs
index 47ce0714..b2b34e4a 100644
--- a/Xamarin.Forms.Platform.iOS/ContextScrollViewDelegate.cs
+++ b/Xamarin.Forms.Platform.iOS/ContextScrollViewDelegate.cs
@@ -178,7 +178,7 @@ namespace Xamarin.Forms.Platform.iOS
if (table != null)
{
_table = table;
- _globalCloser = new GlobalCloseContextGestureRecognizer(scrollView, _buttons, close);
+ _globalCloser = new GlobalCloseContextGestureRecognizer(scrollView, close);
_globalCloser.ShouldRecognizeSimultaneously = (recognizer, r) => r == _table.PanGestureRecognizer;
table.AddGestureRecognizer(_globalCloser);