From 9d9859248ed822fced70378ea40670076c92b00e Mon Sep 17 00:00:00 2001 From: Eric Kuck Date: Fri, 21 Dec 2018 20:37:22 -0600 Subject: RTL support Signed-off-by: Eric Kuck --- .../UI/iOS/ViewController/TunnelsListTableViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'WireGuard/WireGuard/UI/iOS/ViewController/TunnelsListTableViewController.swift') diff --git a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelsListTableViewController.swift b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelsListTableViewController.swift index 5e4583e..25d02be 100644 --- a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelsListTableViewController.swift +++ b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelsListTableViewController.swift @@ -41,8 +41,8 @@ class TunnelsListTableViewController: UIViewController { view.addSubview(tableView) tableView.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ - tableView.leftAnchor.constraint(equalTo: view.leftAnchor), - tableView.rightAnchor.constraint(equalTo: view.rightAnchor), + tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor), + tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor), tableView.topAnchor.constraint(equalTo: view.topAnchor), tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor) ]) -- cgit v1.2.3-59-g8ed1b