Hide alert window before setting result (#848)

This commit is contained in:
Jimmy Garrido 2017-03-30 17:04:29 -07:00 коммит произвёл Rui Marinho
Родитель 2d9eab4be8
Коммит b42611cdeb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -357,8 +357,8 @@ namespace Xamarin.Forms.Platform.iOS
return UIAlertAction.Create(text, style,
a =>
{
setResult();
window.Hidden = true;
setResult();
});
}