aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift
diff options
context:
space:
mode:
authorRoopesh Chander <roop@roopc.net>2018-10-25 13:23:09 +0530
committerRoopesh Chander <roop@roopc.net>2018-10-27 15:13:02 +0530
commitf845d7557acc5beae1998589a3fbb47a4378342a (patch)
treecec4e8811305715fa4fb20ad0880ebc71b2d4588 /WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift
parentiPad: Make sure the navigation bar is visible in the detail view (diff)
downloadwireguard-apple-f845d7557acc5beae1998589a3fbb47a4378342a.tar.xz
wireguard-apple-f845d7557acc5beae1998589a3fbb47a4378342a.zip
iPad: Fix modal presentation style
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to 'WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift')
-rw-r--r--WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift1
1 files changed, 1 insertions, 0 deletions
diff --git a/WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift b/WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift
index 4b924b1..08b8145 100644
--- a/WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift
+++ b/WireGuard/WireGuard/UI/iOS/TunnelsListTableViewController.swift
@@ -79,6 +79,7 @@ class TunnelsListTableViewController: UITableViewController {
let editVC = TunnelEditTableViewController(tunnelsManager: tunnelsManager, tunnelConfiguration: tunnelConfiguration)
editVC.delegate = self
let editNC = UINavigationController(rootViewController: editVC)
+ editNC.modalPresentationStyle = .formSheet
self.present(editNC, animated: true)
}