1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-25 12:43:39 +00:00

android dialog is not cancelable

This commit is contained in:
Kyle Spearrin
2018-03-16 10:42:07 -04:00
parent b26067e5da
commit 7041991d5a

View File

@@ -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();
}