aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift
diff options
context:
space:
mode:
authorRoopesh Chander <roop@roopc.net>2019-02-15 15:40:08 +0530
committerRoopesh Chander <roop@roopc.net>2019-02-15 15:40:12 +0530
commitc38a88988b9a24048087e6ee8c332bb130a422d5 (patch)
tree2e0ab26d18d15b299058e502d42737210fd492e7 /WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift
parent.mobileconfig: fix lists (diff)
downloadwireguard-apple-c38a88988b9a24048087e6ee8c332bb130a422d5.tar.xz
wireguard-apple-c38a88988b9a24048087e6ee8c332bb130a422d5.zip
macOS: Tunnels list: Use constant width for the table view
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to '')
-rw-r--r--WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift
index c2f3ffa..0ebac16 100644
--- a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift
+++ b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelsListTableViewController.swift
@@ -100,7 +100,7 @@ class TunnelsListTableViewController: NSViewController {
])
NSLayoutConstraint.activate([
- containerView.widthAnchor.constraint(greaterThanOrEqualToConstant: 120),
+ containerView.widthAnchor.constraint(equalToConstant: 180),
containerView.heightAnchor.constraint(greaterThanOrEqualToConstant: 120)
])