From f8c9dec309c4934cf685d974bceeb159225acf1b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Sat, 6 Jun 2020 16:35:31 +0200 Subject: [PATCH] Switch to themeSystem as default. --- src/com/hughes/android/dictionary/DictionaryApplication.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/hughes/android/dictionary/DictionaryApplication.java b/src/com/hughes/android/dictionary/DictionaryApplication.java index 840f8ff..7ac45ae 100644 --- a/src/com/hughes/android/dictionary/DictionaryApplication.java +++ b/src/com/hughes/android/dictionary/DictionaryApplication.java @@ -311,7 +311,7 @@ public enum DictionaryApplication { public Theme getSelectedTheme() { final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(appContext); - final String theme = prefs.getString(appContext.getString(R.string.themeKey), "themeLight"); + final String theme = prefs.getString(appContext.getString(R.string.themeKey), "themeSystem"); if (theme.equals("themeLight")) { return Theme.LIGHT; } else if (theme.equals("themeSystem")) { -- 2.43.0