Avoid passing max chapter number from tracker (fixes #2131)

This commit is contained in:
arkon 2020-03-07 18:01:26 -05:00
parent fbaaed1516
commit 0ec8def0d8

View File

@ -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
}