aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard
diff options
context:
space:
mode:
authorRoopesh Chander <roop@roopc.net>2019-02-08 03:22:16 +0530
committerRoopesh Chander <roop@roopc.net>2019-02-08 04:40:11 +0530
commitef6af03412fc95a9fafa4ecb7f76044778a2cef9 (patch)
treee9d77a2ee7fce650fcf57b0f88b6604f55ef2786 /WireGuard
parentmacOS: Show alert if exiting with an active tunnel (diff)
downloadwireguard-apple-ef6af03412fc95a9fafa4ecb7f76044778a2cef9.tar.xz
wireguard-apple-ef6af03412fc95a9fafa4ecb7f76044778a2cef9.zip
iOS: Tunnel detail: Turn off animation when showing fields changing
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to 'WireGuard')
-rw-r--r--WireGuard/WireGuard/UI/iOS/ViewController/TunnelDetailTableViewController.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelDetailTableViewController.swift b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelDetailTableViewController.swift
index f65ca23..7ed019b 100644
--- a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelDetailTableViewController.swift
+++ b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelDetailTableViewController.swift
@@ -160,7 +160,7 @@ class TunnelDetailTableViewController: UITableViewController {
modifiedIndexPaths.append(IndexPath(row: row, section: section))
}
if !modifiedIndexPaths.isEmpty {
- tableView.reloadRows(at: modifiedIndexPaths, with: .automatic)
+ tableView.reloadRows(at: modifiedIndexPaths, with: .none)
}
var removedIndexPaths = [IndexPath]()