diff --git a/Mac/MainWindow/Timeline/TimelineViewController.swift b/Mac/MainWindow/Timeline/TimelineViewController.swift index 1467649e4..3e04feeb3 100644 --- a/Mac/MainWindow/Timeline/TimelineViewController.swift +++ b/Mac/MainWindow/Timeline/TimelineViewController.swift @@ -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