mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Don't notify the delegate of a selected article change if they haven't actually changed
This commit is contained in:
@@ -164,6 +164,8 @@ final class TimelineViewController: NSViewController, UndoableCommandRunner, Unr
|
||||
}
|
||||
}
|
||||
|
||||
private var previouslySelectedArticles: ArticleArray?
|
||||
|
||||
private var oneSelectedArticle: Article? {
|
||||
return selectedArticles.count == 1 ? selectedArticles.first : nil
|
||||
}
|
||||
@@ -816,6 +818,8 @@ extension TimelineViewController: NSTableViewDelegate {
|
||||
}
|
||||
|
||||
private func selectionDidChange(_ selectedArticles: ArticleArray?) {
|
||||
guard selectedArticles != previouslySelectedArticles else { return }
|
||||
previouslySelectedArticles = selectedArticles
|
||||
delegate?.timelineSelectionDidChange(self, selectedArticles: selectedArticles)
|
||||
delegate?.timelineInvalidatedRestorationState(self)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user