[WinRT] Remove preemptive setting of null upon action sheet closure (#305)
authorPaul DiPietro <pauldipietro@users.noreply.github.com>
Tue, 16 Aug 2016 19:13:12 +0000 (14:13 -0500)
committerJason Smith <jason.smith@xamarin.com>
Tue, 16 Aug 2016 19:13:12 +0000 (12:13 -0700)
Xamarin.Forms.Platform.WinRT/Platform.cs

index a0b1ca5..e780d95 100644 (file)
@@ -643,7 +643,6 @@ namespace Xamarin.Forms.Platform.WinRT
                        list.ItemClick += (s, e) =>
                        {
                                _currentActionSheet.IsOpen = false;
-                               _currentActionSheet = null;
                                options.SetResult((string)e.ClickedItem);
                        };