From c38a88988b9a24048087e6ee8c332bb130a422d5 Mon Sep 17 00:00:00 2001 From: Roopesh Chander Date: Fri, 15 Feb 2019 15:40:08 +0530 Subject: macOS: Tunnels list: Use constant width for the table view Signed-off-by: Roopesh Chander --- .../UI/macOS/ViewController/ManageTunnelsRootViewController.swift | 3 +-- .../UI/macOS/ViewController/TunnelsListTableViewController.swift | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/WireGuard/WireGuard/UI/macOS/ViewController/ManageTunnelsRootViewController.swift b/WireGuard/WireGuard/UI/macOS/ViewController/ManageTunnelsRootViewController.swift index 5e90437..8d28157 100644 --- a/WireGuard/WireGuard/UI/macOS/ViewController/ManageTunnelsRootViewController.swift +++ b/WireGuard/WireGuard/UI/macOS/ViewController/ManageTunnelsRootViewController.swift @@ -54,8 +54,7 @@ class ManageTunnelsRootViewController: NSViewController { tunnelDetailContainerView.topAnchor.constraint(equalTo: container.topAnchor), tunnelDetailContainerView.bottomAnchor.constraint(equalTo: container.bottomAnchor), tunnelDetailContainerView.leadingAnchor.constraint(equalTo: tunnelsListView.trailingAnchor, constant: centralSpacing), - tunnelDetailContainerView.trailingAnchor.constraint(equalTo: container.trailingAnchor), - tunnelsListView.widthAnchor.constraint(equalTo: container.widthAnchor, multiplier: 0.3) + tunnelDetailContainerView.trailingAnchor.constraint(equalTo: container.trailingAnchor) ]) } 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) ]) -- cgit v1.2.3-59-g8ed1b