Default to only updating non-completed manga
This commit is contained in:
parent
78de11a9e3
commit
0a4163d236
@ -178,7 +178,7 @@ class PreferencesHelper(val context: Context) {
|
||||
|
||||
fun jumpToChapters() = prefs.getBoolean(Keys.jumpToChapters, false)
|
||||
|
||||
fun updateOnlyNonCompleted() = prefs.getBoolean(Keys.updateOnlyNonCompleted, false)
|
||||
fun updateOnlyNonCompleted() = prefs.getBoolean(Keys.updateOnlyNonCompleted, true)
|
||||
|
||||
fun autoUpdateTrack() = prefs.getBoolean(Keys.autoUpdateTrack, true)
|
||||
|
||||
|
@ -197,7 +197,7 @@ class SettingsLibraryController : SettingsController() {
|
||||
switchPreference {
|
||||
key = Keys.updateOnlyNonCompleted
|
||||
titleRes = R.string.pref_update_only_non_completed
|
||||
defaultValue = false
|
||||
defaultValue = true
|
||||
}
|
||||
preference {
|
||||
key = Keys.libraryUpdateCategories
|
||||
|
Loading…
Reference in New Issue
Block a user