aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard
diff options
context:
space:
mode:
authorRoopesh Chander <roop@roopc.net>2018-11-03 10:25:32 +0530
committerRoopesh Chander <roop@roopc.net>2018-11-03 10:26:15 +0530
commitae2ae87bbe548f507c9c3cb3c52b520c209591b2 (patch)
treee88c0e85bd67d7b8f48242f2c41f910415da1dfb /WireGuard
parentTunnels list: Show an 'Add' button when there are no tunnels (diff)
downloadwireguard-apple-ae2ae87bbe548f507c9c3cb3c52b520c209591b2.tar.xz
wireguard-apple-ae2ae87bbe548f507c9c3cb3c52b520c209591b2.zip
Tunnels list: Remove separator lines in the table view
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to 'WireGuard')
-rw-r--r--WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift1
1 files changed, 1 insertions, 0 deletions
diff --git a/WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift b/WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift
index d04f648..e42b964 100644
--- a/WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift
+++ b/WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift
@@ -45,6 +45,7 @@ class TunnelsListTableViewController: UIViewController {
let tableView = UITableView(frame: CGRect.zero, style: .plain)
tableView.rowHeight = 60
+ tableView.separatorStyle = .none
tableView.register(TunnelsListTableViewCell.self, forCellReuseIdentifier: TunnelsListTableViewCell.id)
s.view.addSubview(tableView)