Change default theme to System Default (#2608)

* Change default theme to System Default

Hopefully this was the only string that dictated the default setting.

* Update PreferencesHelper.kt
This commit is contained in:
Simon M
2020-02-20 00:34:21 +01:00
committed by GitHub
parent 3bce3502d2
commit edcadb7dd1
2 changed files with 2 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ class PreferencesHelper(val context: Context) {
fun clear() = prefs.edit().clear().apply()
fun themeMode() = rxPrefs.getString(Keys.themeMode, Values.THEME_MODE_LIGHT)
fun themeMode() = rxPrefs.getString(Keys.themeMode, Values.THEME_MODE_SYSTEM)
fun themeDark() = prefs.getString(Keys.themeDark, Values.THEME_DARK_DEFAULT)