chore: Add check in missing from merge

This commit is contained in:
LisoUseInAIKyrios 2024-04-06 22:49:49 +04:00
parent 628c25e808
commit f6de32884e
1 changed files with 2 additions and 1 deletions

View File

@ -61,7 +61,8 @@ public class GmsCoreSupport {
.setTitle(str("gms_core_dialog_title"))
.setMessage(str(dialogMessageRef))
.setPositiveButton(str(positiveButtonStringRef), onPositiveClickListener)
.setCancelable(false)
// Allow using back button to skip the action, just in case the check can never be satisfied.
.setCancelable(true)
.show();
}, 100);
}