1
0
mirror of https://github.com/mihonapp/mihon.git synced 2025-08-05 14:21:31 +02:00

Fix activity UI state when activity is killed (closes )

This commit is contained in:
arkon
2020-03-07 13:40:43 -05:00
parent b84638ac5a
commit 4b02ecd6e8

@@ -217,13 +217,13 @@ class MainActivity : BaseActivity() {
}
private fun syncActivityViewWithController(to: Controller?, from: Controller? = null) {
if (from is DialogController || to is DialogController) {
if (from is DialogController) {
return
}
supportActionBar?.setDisplayHomeAsUpEnabled(router.backstackSize != 1)
if (from is RootController && to !is RootController) {
if ((from == null || from is RootController) && to !is RootController) {
bottomNavAnimator.collapse()
}
if (to is RootController && from !is RootController) {