فهرست منبع

Fix nav bar appearing when going from Library's action mode (#7821)

fixes #7788
Andreas 2 سال پیش
والد
کامیت
6d6c38ecaf
1فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 4 1
      app/src/main/java/eu/kanade/tachiyomi/ui/library/LibraryController.kt

+ 4 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/library/LibraryController.kt

@@ -67,7 +67,10 @@ class LibraryController(
         )
         LaunchedEffect(presenter.selectionMode) {
             val activity = (activity as? MainActivity) ?: return@LaunchedEffect
-            activity.showBottomNav(presenter.selectionMode.not())
+            // Could perhaps be removed when navigation is in a Compose world
+            if (router.backstackSize == 1) {
+                activity.showBottomNav(presenter.selectionMode.not())
+            }
         }
         LaunchedEffect(presenter.isLoading) {
             if (presenter.isLoading.not()) {