mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
android dialog is not cancelable
This commit is contained in:
parent
b26067e5da
commit
7041991d5a
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ namespace Bit.Android.Services
|
||||||
var activity = (MainActivity)CurrentContext;
|
var activity = (MainActivity)CurrentContext;
|
||||||
_progressDialog = new ProgressDialog(activity);
|
_progressDialog = new ProgressDialog(activity);
|
||||||
_progressDialog.SetMessage(text);
|
_progressDialog.SetMessage(text);
|
||||||
_progressDialog.SetCancelable(true);
|
_progressDialog.SetCancelable(false);
|
||||||
_progressDialog.Show();
|
_progressDialog.Show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue