1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-30 04:17:55 +02: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();
}