Fix: pushing Advanced Settings screen and List of wallets screen did not hide the tab bar

pull/2182/head
Hwee-Boon Yar 4 years ago
parent d87267a4fd
commit 0a5bd8b755
  1. 1
      AlphaWallet/Accounts/Coordinators/AccountsCoordinator.swift
  2. 1
      AlphaWallet/Settings/Coordinators/SettingsCoordinator.swift

@ -28,6 +28,7 @@ class AccountsCoordinator: Coordinator {
controller.navigationItem.rightBarButtonItem = UIBarButtonItem(title: R.string.localizable.addButtonTitle(), style: .plain, target: self, action: #selector(addWallet))
controller.allowsAccountDeletion = true
controller.delegate = self
controller.hidesBottomBarWhenPushed = true
return controller
}()

@ -39,6 +39,7 @@ class SettingsCoordinator: Coordinator {
lazy var advancedSettingsViewController: AdvancedSettingsViewController = {
let controller = AdvancedSettingsViewController()
controller.delegate = self
controller.hidesBottomBarWhenPushed = true
return controller
}()

Loading…
Cancel
Save