mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-11 14:50:52 +01:00
Avoid passing max chapter number from tracker (fixes #2131)
This commit is contained in:
parent
fbaaed1516
commit
0ec8def0d8
1 changed files with 6 additions and 0 deletions
|
@ -56,6 +56,12 @@ class SetTrackChaptersDialog<T> : DialogController
|
|||
val np: NumberPicker = view.findViewById(R.id.chapters_picker)
|
||||
// Set initial value
|
||||
np.value = item.track?.last_chapter_read ?: 0
|
||||
|
||||
// Enforce maximum value if tracker has total number of chapters set
|
||||
if (item.track != null && item.track.total_chapters > 0) {
|
||||
np.maxValue = item.track.total_chapters
|
||||
}
|
||||
|
||||
// Don't allow to go from 0 to 9999
|
||||
np.wrapSelectorWheel = false
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue