1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2025-01-15 07:17:00 +00:00

Prevent "Missing data files" message box from closing

This commit is contained in:
biroder 2023-11-02 13:11:36 +00:00 committed by GitHub
parent 45443dfa23
commit 0e33bcaaf9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,7 +43,8 @@ public class MainActivity extends AppCompatActivity {
alert.setMessage(message);
alert.setPositiveButton(android.R.string.yes, (dialog, whichButton) -> yesCallback.run());
alert.setNegativeButton(android.R.string.no, (dialog, whichButton) -> noCallback.run());
alert.setCancelable(false);
alert.show();
});
}
}
}