diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2020-07-23 10:32:58 +0300 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2020-07-23 15:13:24 +0300 |
| commit | 613c243bb625f6a4d2ae97921daa477b23c4bdcf (patch) | |
| tree | ae9822eb58ed4d302e35249db539d57619a3cec4 | |
| parent | 87f26c5deaabedf39f87b866f6908115a5aaf1db (diff) | |
| download | mullvadvpn-613c243bb625f6a4d2ae97921daa477b23c4bdcf.tar.xz mullvadvpn-613c243bb625f6a4d2ae97921daa477b23c4bdcf.zip | |
Use colored separator
| -rw-r--r-- | ios/MullvadVPN/SelectLocationController.swift | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ios/MullvadVPN/SelectLocationController.swift b/ios/MullvadVPN/SelectLocationController.swift index 77a88e2db1..4441e8c18a 100644 --- a/ios/MullvadVPN/SelectLocationController.swift +++ b/ios/MullvadVPN/SelectLocationController.swift @@ -44,7 +44,8 @@ class SelectLocationController: UITableViewController, RelayCacheObserver { tableView.tableHeaderView = SelectLocationHeaderView(frame: CGRect(x: 0, y: 0, width: 50, height: 50)) tableView.register(SelectLocationCell.self, forCellReuseIdentifier: kCellIdentifier) - tableView.separatorColor = .clear + tableView.separatorColor = .secondaryColor + tableView.separatorInset = .zero dataSource = DataSource( tableView: self.tableView, |
