mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-11 15:00:53 +01:00
Fix activity UI state when activity is killed (closes #2547)
This commit is contained in:
parent
b84638ac5a
commit
4b02ecd6e8
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue