mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-23 20:05:29 +01:00
Prevent stray taps from accidentally cancelling loot windows and the permadeath "Game Over" screen
This commit is contained in:
@@ -202,7 +202,8 @@ public final class Dialogs {
|
||||
mainActivity.getResources().getDrawable(R.drawable.ui_icon_equipment),
|
||||
msg,
|
||||
combinedLoot.items.isEmpty() ? null : itemList,
|
||||
true);
|
||||
true,
|
||||
false);
|
||||
|
||||
itemList.setOnItemClickListener(new OnItemClickListener() {
|
||||
@Override
|
||||
@@ -255,7 +256,8 @@ public final class Dialogs {
|
||||
mainActivity.getResources().getDrawable(R.drawable.ui_icon_combat),
|
||||
mainActivity.getResources().getString(R.string.dialog_game_over_text),
|
||||
null,
|
||||
true);
|
||||
true,
|
||||
false);
|
||||
|
||||
CustomDialogFactory.addDismissButton(d, android.R.string.ok);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user