mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 20:31:02 -05:00
update BaseController.kt (#3423)
This commit is contained in:
parent
16fc58bd16
commit
d8b1f60581
1 changed files with 2 additions and 1 deletions
|
@ -64,8 +64,9 @@ abstract class BaseController<VB : ViewBinding>(bundle: Bundle? = null) :
|
|||
override fun onChangeStarted(handler: ControllerChangeHandler, type: ControllerChangeType) {
|
||||
if (type.isEnter) {
|
||||
setTitle()
|
||||
setHasOptionsMenu(true)
|
||||
}
|
||||
setHasOptionsMenu(type.isEnter)
|
||||
|
||||
super.onChangeStarted(handler, type)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue