diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2021-10-14 08:58:53 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2021-10-14 08:58:53 +0200 |
| commit | 18d5496648dc9da166e63cfdd7d42b5c680b2b31 (patch) | |
| tree | 88f3a90e73878f5709be517c242a95446f393649 /ios | |
| parent | d067c87830783e12e4949827083d0e8ef62769e4 (diff) | |
| download | mullvadvpn-18d5496648dc9da166e63cfdd7d42b5c680b2b31.tar.xz mullvadvpn-18d5496648dc9da166e63cfdd7d42b5c680b2b31.zip | |
SelectLocation: fix navigation bar tintColor
Diffstat (limited to 'ios')
| -rw-r--r-- | ios/MullvadVPN/SelectLocationNavigationController.swift | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ios/MullvadVPN/SelectLocationNavigationController.swift b/ios/MullvadVPN/SelectLocationNavigationController.swift index 46df46698d..8410bc039e 100644 --- a/ios/MullvadVPN/SelectLocationNavigationController.swift +++ b/ios/MullvadVPN/SelectLocationNavigationController.swift @@ -14,7 +14,8 @@ class SelectLocationNavigationController: UINavigationController { init(contentController: SelectLocationViewController) { super.init(navigationBarClass: CustomNavigationBar.self, toolbarClass: nil) - self.viewControllers = [contentController] + viewControllers = [contentController] + navigationBar.tintColor = .white } override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) { |
