mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Merge pull request #3395 from GetToSet/main
Fix: bottom inset of TimelineTableView disappeared on macOS Monterey.
This commit is contained in:
@@ -812,6 +812,12 @@ extension TimelineViewController: NSTableViewDataSource {
|
||||
}
|
||||
return ArticlePasteboardWriter(article: article)
|
||||
}
|
||||
|
||||
func tableView(_ tableView: NSTableView, heightOfRow row: Int) -> CGFloat {
|
||||
// Keeping -[NSTableViewDelegate tableView:heightOfRow:] implemented fixes
|
||||
// an issue that the bottom inset of NSTableView disappears on macOS Monterey.
|
||||
return tableView.rowHeight
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - NSTableViewDelegate
|
||||
|
||||
Reference in New Issue
Block a user