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

This commit is contained in:
Roopesh Chander 2019-02-08 03:22:16 +05:30
parent 59918ec67a
commit b947c98dc0
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]()