Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

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

fixes #7788
Cette révision appartient à :
Andreas 2022-08-19 22:02:12 +02:00 révisé par GitHub
Parent 3760b310df
révision 6d6c38ecaf
Aucune clé n'a été trouvée pour cette signature dans la base de données
ID de la clé GPG: 4AEE18F83AFDEB23

Voir le fichier

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