Skip to content

Commit

Permalink
Reorder chapter filters to better match library filters
Browse files Browse the repository at this point in the history
  • Loading branch information
arkon committed Oct 3, 2020
1 parent 11ab3b2 commit 65bacd2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 65bacd2

Please sign in to comment.