Эх сурвалжийг харах

Add bookmarking to chapter selection menu (closes #1065)

arkon 5 жил өмнө
parent
commit
a7ece4fdf3

+ 6 - 4
app/src/main/java/eu/kanade/tachiyomi/ui/manga/chapter/ChaptersController.kt

@@ -362,11 +362,13 @@ class ChaptersController : NucleusController<ChaptersPresenter>(),
 
     override fun onActionItemClicked(mode: ActionMode, item: MenuItem): Boolean {
         when (item.itemId) {
-            R.id.action_select_all -> selectAll()
-            R.id.action_mark_as_read -> markAsRead(getSelectedChapters())
-            R.id.action_mark_as_unread -> markAsUnread(getSelectedChapters())
             R.id.action_download -> downloadChapters(getSelectedChapters())
             R.id.action_delete -> showDeleteChaptersConfirmationDialog()
+            R.id.action_bookmark -> bookmarkChapters(getSelectedChapters(), true)
+            R.id.action_remove_bookmark -> bookmarkChapters(getSelectedChapters(), false)
+            R.id.action_mark_as_read -> markAsRead(getSelectedChapters())
+            R.id.action_mark_as_unread -> markAsUnread(getSelectedChapters())
+            R.id.action_select_all -> selectAll()
             else -> return false
         }
         return true
@@ -390,9 +392,9 @@ class ChaptersController : NucleusController<ChaptersPresenter>(),
 
         when (item.itemId) {
             R.id.action_download -> downloadChapters(chapters)
+            R.id.action_delete -> deleteChapters(chapters)
             R.id.action_bookmark -> bookmarkChapters(chapters, true)
             R.id.action_remove_bookmark -> bookmarkChapters(chapters, false)
-            R.id.action_delete -> deleteChapters(chapters)
             R.id.action_mark_as_read -> markAsRead(chapters)
             R.id.action_mark_as_unread -> markAsUnread(chapters)
             R.id.action_mark_previous_as_read -> markPreviousAsRead(chapter)

+ 10 - 0
app/src/main/res/menu/chapter_selection.xml

@@ -15,6 +15,16 @@
         android:title="@string/action_delete"
         app:showAsAction="ifRoom" />
 
+    <item
+        android:id="@+id/action_bookmark"
+        android:title="@string/action_bookmark"
+        android:visible="true" />
+
+    <item
+        android:id="@+id/action_remove_bookmark"
+        android:title="@string/action_remove_bookmark"
+        android:visible="true" />
+
     <item
         android:id="@+id/action_mark_as_read"
         android:icon="@drawable/ic_done_all_white_24dp"