Messaging: Style even more dialogs properly

Somehow some dialogs use the theme but some need the style set manually

Change-Id: I386a0e43c10d328088066961b75a162bf2c351c1
This commit is contained in:
Michael W
2024-12-26 15:54:37 +01:00
parent 0aa08c0c3b
commit 241b4cf833
7 changed files with 9 additions and 8 deletions
@@ -70,7 +70,7 @@ public class MessageDetailsDialog {
private static void showDialog(final Context context, String messageDetails) {
if (!TextUtils.isEmpty(messageDetails)) {
new AlertDialog.Builder(context)
new AlertDialog.Builder(context, R.style.AlertDialogTheme)
.setTitle(R.string.message_details_title)
.setMessage(messageDetails)
.setCancelable(true)