Don't remove items from Feeds list when batch update is performed. Issue #1879
This commit is contained in:
parent
9007ed4b06
commit
38981d01bd
|
@ -465,7 +465,7 @@ class SceneCoordinator: NSObject, UndoableCommandRunner, UnreadCountProvider {
|
||||||
}
|
}
|
||||||
|
|
||||||
@objc func batchUpdateDidPerform(_ notification: Notification) {
|
@objc func batchUpdateDidPerform(_ notification: Notification) {
|
||||||
rebuildBackingStores()
|
rebuildBackingStoresWithMerge()
|
||||||
}
|
}
|
||||||
|
|
||||||
@objc func displayNameDidChange(_ note: Notification) {
|
@objc func displayNameDidChange(_ note: Notification) {
|
||||||
|
@ -1374,7 +1374,6 @@ private extension SceneCoordinator {
|
||||||
@objc func rebuildBackingStoresWithMerge() {
|
@objc func rebuildBackingStoresWithMerge() {
|
||||||
addShadowTableToFilterExceptions()
|
addShadowTableToFilterExceptions()
|
||||||
rebuildBackingStores()
|
rebuildBackingStores()
|
||||||
treeControllerDelegate.resetFilterExceptions()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func rebuildShadowTable() {
|
func rebuildShadowTable() {
|
||||||
|
|
Loading…
Reference in New Issue