aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.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/TunnelEditTableViewController.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/TunnelEditTableViewController.swift')
-rw-r--r--WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift2
1 files changed, 0 insertions, 2 deletions
diff --git a/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift b/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift
index 1054cfa..e155a61 100644
--- a/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift
+++ b/WireGuard/WireGuard/UI/iOS/TunnelEditTableViewController.swift
@@ -36,7 +36,6 @@ class TunnelEditTableViewController: UITableViewController {
tunnel = t
tunnelViewModel = TunnelViewModel(tunnelConfiguration: t.tunnelConfiguration)
super.init(style: .grouped)
- self.modalPresentationStyle = .formSheet
}
init(tunnelsManager tm: TunnelsManager, tunnelConfiguration: TunnelConfiguration?) {
@@ -46,7 +45,6 @@ class TunnelEditTableViewController: UITableViewController {
tunnel = nil
tunnelViewModel = TunnelViewModel(tunnelConfiguration: tunnelConfiguration)
super.init(style: .grouped)
- self.modalPresentationStyle = .formSheet
}
required init?(coder aDecoder: NSCoder) {