Fix manga info expansion toggling again after refreshing

This commit is contained in:
arkon 2020-04-19 23:23:36 -04:00
parent cd25e1283a
commit c9a727594e

View File

@ -59,6 +59,8 @@ class MangaInfoController(private val fromSource: Boolean = false) :
private val preferences: PreferencesHelper by injectLazy()
private var initialLoad: Boolean = true
override fun createPresenter(): MangaInfoPresenter {
val ctrl = parentController as MangaController
return MangaInfoPresenter(ctrl.manga!!, ctrl.source!!, ctrl.mangaFavoriteRelay)
@ -270,8 +272,9 @@ class MangaInfoController(private val fromSource: Boolean = false) :
.launchInUI()
// Expand manga info if navigated from source listing
if (fromSource) {
if (initialLoad && fromSource) {
toggleMangaInfo(view.context)
initialLoad = false
}
}
}