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;