mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-04 06:40:03 +00:00
Android: Add workaround for conversion progress in dark mode
This commit is contained in:
parent
f01ccfdb82
commit
5ba0832158
@ -409,7 +409,9 @@ public class ConvertFragment extends Fragment implements View.OnClickListener
|
|||||||
|
|
||||||
mCanceled = false;
|
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);
|
progressDialog.setTitle(R.string.convert_converting);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user