Fixed bottombar interface logic
This commit is contained in:
parent
a529667257
commit
1da1b281eb
1 changed files with 2 additions and 2 deletions
|
@ -132,10 +132,10 @@ open class MainActivity : BaseActivity(), DownloadServiceListener {
|
|||
val id = item.itemId
|
||||
val currentController = router.backstack.lastOrNull()?.controller()
|
||||
if (!continueSwitchingTabs && currentController is BottomNavBarInterface) {
|
||||
return@setOnNavigationItemSelectedListener currentController.canChangeTabs {
|
||||
if (!currentController.canChangeTabs {
|
||||
continueSwitchingTabs = true
|
||||
this@MainActivity.navigationView.selectedItemId = id
|
||||
}
|
||||
}) return@setOnNavigationItemSelectedListener false
|
||||
}
|
||||
continueSwitchingTabs = false
|
||||
val currentRoot = router.backstack.firstOrNull()
|
||||
|
|
Reference in a new issue