From: Roopesh Chander Date: Thu, 7 Feb 2019 21:52:16 +0000 (+0530) Subject: iOS: Tunnel detail: Turn off animation when showing fields changing X-Git-Tag: 0.0.20190207-1~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef6af03412fc95a9fafa4ecb7f76044778a2cef9;p=thirdparty%2Fwireguard-apple.git iOS: Tunnel detail: Turn off animation when showing fields changing Signed-off-by: Roopesh Chander --- 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]()