Drop annoying table animations

This commit is contained in:
Davide De Rosa 2018-10-22 00:34:24 +02:00
parent 9292919816
commit a59d16077b
2 changed files with 2 additions and 2 deletions

View File

@ -293,7 +293,7 @@ extension EndpointViewController: UITableViewDataSource, UITableViewDelegate {
setNeedsRefresh()
commitChanges()
tableView.reloadRows(at: updatedIndexPaths, with: .automatic)
tableView.reloadRows(at: updatedIndexPaths, with: .none)
}
// MARK: Helpers

View File

@ -902,7 +902,7 @@ extension ServiceViewController: UITableViewDataSource, UITableViewDelegate, Tog
guard service.isActiveProfile(profile) else {
return
}
tableView.reloadRows(at: [statusIndexPath], with: .automatic)
tableView.reloadRows(at: [statusIndexPath], with: .none)
}
func reloadSelectedRow(andRowAt indexPath: IndexPath? = nil) {