summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.iOS
diff options
context:
space:
mode:
authorJimmy Garrido <jimmygarrido@outlook.com>2017-03-30 17:04:29 -0700
committerRui Marinho <me@ruimarinho.net>2017-03-31 01:04:29 +0100
commitb42611cdebb6b37555a3b382a1ca96ecb66a8510 (patch)
tree3fc658215c5b077b440f556ece8852cc64609e8f /Xamarin.Forms.Platform.iOS
parent2d9eab4be8382cb1880da586302043cf9da25214 (diff)
downloadxamarin-forms-b42611cdebb6b37555a3b382a1ca96ecb66a8510.tar.gz
xamarin-forms-b42611cdebb6b37555a3b382a1ca96ecb66a8510.tar.bz2
xamarin-forms-b42611cdebb6b37555a3b382a1ca96ecb66a8510.zip
Hide alert window before setting result (#848)
Diffstat (limited to 'Xamarin.Forms.Platform.iOS')
-rw-r--r--Xamarin.Forms.Platform.iOS/Platform.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.iOS/Platform.cs b/Xamarin.Forms.Platform.iOS/Platform.cs
index a629d676..b3542d69 100644
--- a/Xamarin.Forms.Platform.iOS/Platform.cs
+++ b/Xamarin.Forms.Platform.iOS/Platform.cs
@@ -357,8 +357,8 @@ namespace Xamarin.Forms.Platform.iOS
return UIAlertAction.Create(text, style,
a =>
{
- setResult();
window.Hidden = true;
+ setResult();
});
}