소스 검색

Fix start/resume fab showing up when entering and then exiting action mode (#5735)

Hunter Nickel 3 년 전
부모
커밋
24b967ad5c
1개의 변경된 파일12개의 추가작업 그리고 8개의 파일을 삭제
  1. 12 8
      app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaController.kt

+ 12 - 8
app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaController.kt

@@ -350,6 +350,16 @@ class MangaController :
         actionFab = null
     }
 
+    private fun updateFabVisibility() {
+        val context = view?.context ?: return
+        val adapter = chaptersAdapter ?: return
+        val fab = actionFab ?: return
+        fab.isVisible = adapter.items.any { !it.read }
+        if (adapter.items.any { it.read }) {
+            fab.text = context.getString(R.string.action_resume)
+        }
+    }
+
     override fun onDestroyView(view: View) {
         destroyActionModeIfNeeded()
         (activity as? MainActivity)?.clearFixViewToBottom(binding.actionToolbar)
@@ -800,13 +810,7 @@ class MangaController :
             actionMode?.invalidate()
         }
 
-        val context = view?.context
-        if (context != null) {
-            actionFab?.isVisible = chapters.any { !it.read }
-            if (chapters.any { it.read }) {
-                actionFab?.text = context.getString(R.string.action_resume)
-            }
-        }
+        updateFabVisibility()
     }
 
     private fun fetchChaptersFromSource(manualFetch: Boolean = false) {
@@ -988,7 +992,7 @@ class MangaController :
         chaptersAdapter?.clearSelection()
         selectedChapters.clear()
         actionMode = null
-        actionFab?.isVisible = true
+        updateFabVisibility()
     }
 
     override fun onDetach(view: View) {