瀏覽代碼

Reorder chapter filters to better match library filters

arkon 4 年之前
父節點
當前提交
65bacd288b
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      app/src/main/java/eu/kanade/tachiyomi/ui/manga/chapter/ChaptersSettingsSheet.kt

+ 2 - 2
app/src/main/java/eu/kanade/tachiyomi/ui/manga/chapter/ChaptersSettingsSheet.kt

@@ -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() {