Reorder chapter filters to better match library filters

(cherry picked from commit 65bacd288b10d03662148e9282f97e78b8622a5a)
This commit is contained in:
arkon 2020-10-03 12:32:49 -04:00 committed by Jobobby04
parent 527e26137f
commit eef8b776f6

View File

@ -87,12 +87,12 @@ class ChaptersSettingsSheet(
inner class FilterGroup : Group {
private val unread = Item.TriStateGroup(R.string.action_filter_unread, this)
private val downloaded = Item.TriStateGroup(R.string.action_filter_downloaded, this)
private val unread = Item.TriStateGroup(R.string.action_filter_unread, this)
private val bookmarked = Item.TriStateGroup(R.string.action_filter_bookmarked, this)
override val header = null
override val items = listOf(unread, downloaded, bookmarked)
override val items = listOf(downloaded, unread, bookmarked)
override val footer = null
override fun initModels() {