Don't allow dismissing the progress dialog

This commit is contained in:
Alexander Bakker 2017-11-27 18:38:58 +01:00
parent d922be3912
commit 5df20ef525

View file

@ -26,6 +26,7 @@ public class SlotCollectionTask<T extends Slot> extends AsyncTask<SlotCollection
_cb = cb; _cb = cb;
_type = type; _type = type;
_dialog = new ProgressDialog(context); _dialog = new ProgressDialog(context);
_dialog.setCancelable(false);
} }
@Override @Override