From bb82004d5ce3baa50e3115c7143b96e0ff262401 Mon Sep 17 00:00:00 2001 From: Roopesh Chander Date: Sun, 10 Mar 2019 13:01:59 +0530 Subject: [PATCH] on-demand: iOS: Disable selection in SSID detail table view --- .../iOS/ViewController/SSIDOptionDetailTableViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/WireGuard/WireGuard/UI/iOS/ViewController/SSIDOptionDetailTableViewController.swift b/WireGuard/WireGuard/UI/iOS/ViewController/SSIDOptionDetailTableViewController.swift index c1e0913..668797e 100644 --- a/WireGuard/WireGuard/UI/iOS/ViewController/SSIDOptionDetailTableViewController.swift +++ b/WireGuard/WireGuard/UI/iOS/ViewController/SSIDOptionDetailTableViewController.swift @@ -22,6 +22,7 @@ class SSIDOptionDetailTableViewController: UITableViewController { tableView.estimatedRowHeight = 44 tableView.rowHeight = UITableView.automaticDimension + tableView.allowsSelection = false tableView.register(TextCell.self) }