mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-12-18 11:12:27 +03:00
enable "ALL" in Browse by default (#6023)
some extensions, including self-hosted ones, have the "ALL" label and sometimes users get confused with not having enabled "ALL" after installing new extensions
This commit is contained in:
parent
6d650518a1
commit
cc1a317439
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ class PreferencesHelper(val context: Context) {
|
||||||
|
|
||||||
fun sourceDisplayMode() = flowPrefs.getEnum(Keys.sourceDisplayMode, DisplayModeSetting.COMPACT_GRID)
|
fun sourceDisplayMode() = flowPrefs.getEnum(Keys.sourceDisplayMode, DisplayModeSetting.COMPACT_GRID)
|
||||||
|
|
||||||
fun enabledLanguages() = flowPrefs.getStringSet(Keys.enabledLanguages, setOf("en", Locale.getDefault().language))
|
fun enabledLanguages() = flowPrefs.getStringSet(Keys.enabledLanguages, setOf("all", "en", Locale.getDefault().language))
|
||||||
|
|
||||||
fun trackUsername(sync: TrackService) = prefs.getString(Keys.trackUsername(sync.id), "")
|
fun trackUsername(sync: TrackService) = prefs.getString(Keys.trackUsername(sync.id), "")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue