summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul DiPietro <pauldipietro@users.noreply.github.com>2016-08-16 14:13:12 -0500
committerJason Smith <jason.smith@xamarin.com>2016-08-16 12:13:12 -0700
commite488f7f3189d5bafecf36f79c4fb1862d662350b (patch)
tree37fb1d9cb8f2441d00dcb2e3a796f8bbbb5e0773
parent4226f5b386a83dc9eb2f0c06f4920ac1be19e036 (diff)
downloadxamarin-forms-e488f7f3189d5bafecf36f79c4fb1862d662350b.tar.gz
xamarin-forms-e488f7f3189d5bafecf36f79c4fb1862d662350b.tar.bz2
xamarin-forms-e488f7f3189d5bafecf36f79c4fb1862d662350b.zip
[WinRT] Remove preemptive setting of null upon action sheet closure (#305)
-rw-r--r--Xamarin.Forms.Platform.WinRT/Platform.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.WinRT/Platform.cs b/Xamarin.Forms.Platform.WinRT/Platform.cs
index a0b1ca58..e780d95a 100644
--- a/Xamarin.Forms.Platform.WinRT/Platform.cs
+++ b/Xamarin.Forms.Platform.WinRT/Platform.cs
@@ -643,7 +643,6 @@ namespace Xamarin.Forms.Platform.WinRT
list.ItemClick += (s, e) =>
{
_currentActionSheet.IsOpen = false;
- _currentActionSheet = null;
options.SetResult((string)e.ClickedItem);
};