mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 20:31:02 -05:00
Default to only updating non-completed manga
This commit is contained in:
parent
78de11a9e3
commit
0a4163d236
2 changed files with 2 additions and 2 deletions
|
@ -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 a new issue