From 7651bb4821d590b76bf569776d5fe0c27cddff5a Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Tue, 17 Nov 2020 22:07:45 -0500 Subject: [PATCH] Fix main table view styling --- macosx/TorrentTableView.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/macosx/TorrentTableView.m b/macosx/TorrentTableView.m index ad0f5ac41..9d161dbf1 100644 --- a/macosx/TorrentTableView.m +++ b/macosx/TorrentTableView.m @@ -77,6 +77,10 @@ [self setDelegate: self]; fPiecesBarPercent = [fDefaults boolForKey: @"PiecesBar"] ? 1.0 : 0.0; + + if (@available(macOS 11.0, *)) { + self.style = NSTableViewStyleFullWidth; + } } return self;