mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 13:17:48 +01:00
Default unreadBadge setting to true (closes #3138)
This commit is contained in:
parent
8a4c4c346a
commit
a94fd24fa9
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ class PreferencesHelper(val context: Context) {
|
|||
|
||||
fun downloadedOnly() = flowPrefs.getBoolean(Keys.downloadedOnly, false)
|
||||
|
||||
fun unreadBadge() = flowPrefs.getBoolean(Keys.unreadBadge, false)
|
||||
fun unreadBadge() = flowPrefs.getBoolean(Keys.unreadBadge, true)
|
||||
|
||||
fun filterDownloaded() = flowPrefs.getBoolean(Keys.filterDownloaded, false)
|
||||
|
||||
|
|
Loading…
Reference in a new issue