change this

This commit is contained in:
Harry Bond 2024-12-19 16:30:04 +00:00
parent 5762449986
commit 0edbc5c421

View file

@ -63,12 +63,13 @@ public class SplashActivity extends AppCompatActivity
final Context context = getApplicationContext();
final String theme = Config.getUiThemeSettings(context);
if (ThemeUtils.isDefaultTheme(context, theme))
setTheme(R.style.MwmTheme_Splash);
else if (ThemeUtils.isNightTheme(context, theme))
setTheme(R.style.MwmTheme_Night_Splash);
else
throw new IllegalArgumentException("Attempt to apply unsupported theme: " + theme);
//Need to change this to use android theme system instead of manually setting
// if (ThemeUtils.isDefaultTheme(context, theme))
// setTheme(R.style.MwmTheme_Splash);
// else if (ThemeUtils.isNightTheme(context, theme))
// setTheme(R.style.MwmTheme_Night_Splash);
// else
// throw new IllegalArgumentException("Attempt to apply unsupported theme: " + theme);
UiThread.cancelDelayedTasks(mInitCoreDelayedTask);
setContentView(R.layout.activity_splash);