Fix fab appearing after closing cover expand when no chapters are unread

This commit is contained in:
Jobobby04 2021-07-24 13:33:33 -04:00
parent 877adee4f7
commit 1699c2ed67

View File

@ -928,14 +928,14 @@ class MangaController :
override fun onAnimationEnd(animation: Animator) {
thumbView.alpha = 1f
binding.expandedImage.isVisible = false
actionFab?.isVisible = true
actionFab?.isVisible = presenter.filteredAndSortedChapters.any { !it.read }
currentAnimator = null
}
override fun onAnimationCancel(animation: Animator) {
thumbView.alpha = 1f
binding.expandedImage.isVisible = false
actionFab?.isVisible = true
actionFab?.isVisible = presenter.filteredAndSortedChapters.any { !it.read }
currentAnimator = null
}
}