iOS: Tunnel detail: Turn off animation when showing fields changing

Signed-off-by: Roopesh Chander <roop@roopc.net>
This commit is contained in:
Roopesh Chander 2019-02-08 03:22:16 +05:30
parent a99a755c34
commit ef6af03412
1 changed files with 1 additions and 1 deletions

View File

@ -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]()