forked from organicmaps/organicmaps
[iOS] Added restore state on bottom tabbar
https://jira.mail.ru/browse/MAPSME-15321
This commit is contained in:
parent
ba8dfaaeb9
commit
f8e7f66813
1 changed files with 6 additions and 3 deletions
|
@ -33,10 +33,13 @@ class BottomMenuInteractor {
|
|||
|
||||
extension BottomMenuInteractor: BottomMenuInteractorProtocol {
|
||||
func close() {
|
||||
if controlsManager?.guidesNavigationBarHidden == false {
|
||||
controlsManager?.menuState = .inactive
|
||||
guard let controlsManager = controlsManager else {
|
||||
fatalError()
|
||||
}
|
||||
if controlsManager.guidesNavigationBarHidden == false {
|
||||
controlsManager.menuState = .inactive
|
||||
} else {
|
||||
controlsManager?.menuState = .hidden
|
||||
controlsManager.menuState = controlsManager.menuRestoreState
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue