diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2021-10-14 14:44:51 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2021-10-14 14:44:51 +0200 |
| commit | 3daae9b6ae2b295814abf21ce9904bb54d0122eb (patch) | |
| tree | a98fabdd7d29ff77afaa4c7425f16fb082e7d957 | |
| parent | d067c87830783e12e4949827083d0e8ef62769e4 (diff) | |
| parent | 93606ed1743274d5656b5b5e0ef9235825451a9b (diff) | |
| download | mullvadvpn-3daae9b6ae2b295814abf21ce9904bb54d0122eb.tar.xz mullvadvpn-3daae9b6ae2b295814abf21ce9904bb54d0122eb.zip | |
Merge branch 'select-location-appearance-ios12'
| -rw-r--r-- | ios/MullvadVPN/SelectLocationNavigationController.swift | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ios/MullvadVPN/SelectLocationNavigationController.swift b/ios/MullvadVPN/SelectLocationNavigationController.swift index 46df46698d..3b6b8ba0a8 100644 --- a/ios/MullvadVPN/SelectLocationNavigationController.swift +++ b/ios/MullvadVPN/SelectLocationNavigationController.swift @@ -14,7 +14,9 @@ class SelectLocationNavigationController: UINavigationController { init(contentController: SelectLocationViewController) { super.init(navigationBarClass: CustomNavigationBar.self, toolbarClass: nil) - self.viewControllers = [contentController] + viewControllers = [contentController] + navigationBar.barStyle = .black + navigationBar.tintColor = .white } override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) { |
