From 7041991d5acdc06b52274c7111d4bee96f2207da Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 16 Mar 2018 10:42:07 -0400 Subject: [PATCH] android dialog is not cancelable --- src/Android/Services/DeviceActionService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Android/Services/DeviceActionService.cs b/src/Android/Services/DeviceActionService.cs index 85009c27f..5493d604c 100644 --- a/src/Android/Services/DeviceActionService.cs +++ b/src/Android/Services/DeviceActionService.cs @@ -455,7 +455,7 @@ namespace Bit.Android.Services var activity = (MainActivity)CurrentContext; _progressDialog = new ProgressDialog(activity); _progressDialog.SetMessage(text); - _progressDialog.SetCancelable(true); + _progressDialog.SetCancelable(false); _progressDialog.Show(); }