diff options
| author | Bug Magnet <marco.nikic@mullvad.net> | 2023-10-20 09:17:08 +0200 |
|---|---|---|
| committer | Bug Magnet <marco.nikic@mullvad.net> | 2023-10-20 09:17:08 +0200 |
| commit | 8fc622a104481731cf56aa6a18666eea51da636d (patch) | |
| tree | 7e14ecc9065f5dc05cab48e9c36c8a5699edc514 /ios/MullvadVPN/Containers/Root/RootContainerViewController.swift | |
| parent | 61bc7d46fdafd964e7efb0073b5233222a71a404 (diff) | |
| parent | 669f1f3832067505d2f9beff99c9a18e0bdf0abb (diff) | |
| download | mullvadvpn-8fc622a104481731cf56aa6a18666eea51da636d.tar.xz mullvadvpn-8fc622a104481731cf56aa6a18666eea51da636d.zip | |
Merge branch 'prevent-user-from-navigating-away-from-views-when-waiting-on-ios-312'
Diffstat (limited to 'ios/MullvadVPN/Containers/Root/RootContainerViewController.swift')
| -rw-r--r-- | ios/MullvadVPN/Containers/Root/RootContainerViewController.swift | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ios/MullvadVPN/Containers/Root/RootContainerViewController.swift b/ios/MullvadVPN/Containers/Root/RootContainerViewController.swift index 60f9faae6d..0d005d66b1 100644 --- a/ios/MullvadVPN/Containers/Root/RootContainerViewController.swift +++ b/ios/MullvadVPN/Containers/Root/RootContainerViewController.swift @@ -352,6 +352,11 @@ class RootContainerViewController: UIViewController { } } + func enableHeaderBarButtons(_ enabled: Bool) { + headerBarView.accountButton.isEnabled = enabled + headerBarView.settingsButton.isEnabled = enabled + } + // MARK: - Accessibility override func accessibilityPerformMagicTap() -> Bool { |
