From 8f77df4ebb27d2257dc835e893913d9deeb2c418 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 8 Jan 2018 09:10:35 -0500 Subject: [PATCH] Don't animate loading alert --- src/iOS/Services/DeviceActionService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/iOS/Services/DeviceActionService.cs b/src/iOS/Services/DeviceActionService.cs index e6f5855d2..808cbda71 100644 --- a/src/iOS/Services/DeviceActionService.cs +++ b/src/iOS/Services/DeviceActionService.cs @@ -303,7 +303,7 @@ namespace Bit.iOS.Services _progressAlert.View.Add(loadingIndicator); var vc = GetPresentedViewController(); - vc?.PresentViewController(_progressAlert, true, null); + vc?.PresentViewController(_progressAlert, false, null); } public void HideLoading() @@ -313,7 +313,7 @@ namespace Bit.iOS.Services return; } - _progressAlert.DismissViewController(true, () => { }); + _progressAlert.DismissViewController(false, null); _progressAlert.Dispose(); _progressAlert = null; }