summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main/java
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2020-09-12 13:43:22 +0200
committerJosJuice <josjuice@gmail.com>2020-09-16 18:48:25 +0200
commit5ba083215852a7f1afa2ac73316c2c0c500a6e7d (patch)
tree60b72e4f6a1ac7d1604c9c6b042d9227ec29d717 /Source/Android/app/src/main/java
parentf01ccfdb824d37dd9bee2eb150a7721ea19b6837 (diff)
Android: Add workaround for conversion progress in dark mode
Diffstat (limited to 'Source/Android/app/src/main/java')
-rw-r--r--Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/ConvertFragment.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/ConvertFragment.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/ConvertFragment.java
index 700721fd03..ac1237ba59 100644
--- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/ConvertFragment.java
+++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/fragments/ConvertFragment.java
@@ -409,7 +409,9 @@ public class ConvertFragment extends Fragment implements View.OnClickListener
mCanceled = false;
- ProgressDialog progressDialog = new ProgressDialog(context, R.style.DolphinDialogBase);
+ // For some reason, setting R.style.DolphinDialogBase as the theme here gives us white text
+ // on a white background when the device is set to dark mode, so let's not set a theme.
+ ProgressDialog progressDialog = new ProgressDialog(context);
progressDialog.setTitle(R.string.convert_converting);