aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift
diff options
context:
space:
mode:
authorRoopesh Chander <roop@roopc.net>2018-11-06 22:42:53 +0530
committerRoopesh Chander <roop@roopc.net>2018-11-06 22:42:53 +0530
commitf6a5dfead42649579ee2f901f7ca63de3cf698da (patch)
tree9b7d642c10150ccf7369514c83b4eaae99fbd4df /WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift
parentGlobal: swiftlint autocorrect (diff)
downloadwireguard-apple-f6a5dfead42649579ee2f901f7ca63de3cf698da.tar.xz
wireguard-apple-f6a5dfead42649579ee2f901f7ca63de3cf698da.zip
Global: swiftlint autocorrect --format
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to '')
-rw-r--r--WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift6
1 files changed, 3 insertions, 3 deletions
diff --git a/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift b/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift
index 2f2b606..40d86e9 100644
--- a/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift
+++ b/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift
@@ -449,9 +449,9 @@ class TunnelEditTableViewKeyValueCell: UITableViewCell {
keyLabel.translatesAutoresizingMaskIntoConstraints = false
keyLabel.textAlignment = .right
let widthRatioConstraint = NSLayoutConstraint(item: keyLabel, attribute: .width,
- relatedBy: .equal,
- toItem: self, attribute: .width,
- multiplier: 0.4, constant: 0)
+ relatedBy: .equal,
+ toItem: self, attribute: .width,
+ multiplier: 0.4, constant: 0)
// The "Persistent Keepalive" key doesn't fit into 0.4 * width on the iPhone SE,
// so set a CR priority > the 0.4-constraint's priority.
widthRatioConstraint.priority = .defaultHigh + 1