From 97fec0d992537da67253437594abca45ca4f7430 Mon Sep 17 00:00:00 2001 From: Eric Kuck Date: Thu, 10 Jan 2019 12:18:56 +0200 Subject: Default view controller sizes Signed-off-by: Eric Kuck --- .../WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift') diff --git a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift index aecb3c9..b818d9f 100644 --- a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift +++ b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift @@ -24,8 +24,8 @@ class TunnelEditViewController: NSViewController { let textView: ConfTextView = { let textView = ConfTextView() - let minWidth: CGFloat = 120 - let minHeight: CGFloat = 60 + let minWidth: CGFloat = 550 + let minHeight: CGFloat = 310 textView.minSize = NSSize(width: 0, height: minHeight) textView.maxSize = NSSize(width: CGFloat.greatestFiniteMagnitude, height: CGFloat.greatestFiniteMagnitude) textView.autoresizingMask = [.width, .height] -- cgit v1.2.3-59-g8ed1b