Reload any Container rows that have change disclosure state since the last rebuild of the Shadow Table. Fixes #3484

This commit is contained in:
Maurice Parker
2022-03-01 11:14:41 -06:00
parent 477062c756
commit 2ff8fee308
3 changed files with 47 additions and 4 deletions

View File

@@ -627,6 +627,14 @@ class MasterFeedViewController: UITableViewController, UndoableCommandRunner {
}
}
if let rowChanges = changes.rowChanges {
for rowChange in rowChanges {
if let reloads = rowChange.reloadIndexPaths, !reloads.isEmpty {
tableView.reloadRows(at: reloads, with: .none)
}
}
}
completion?()
}