1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-23 16:24:02 +00:00

Fix main table view styling

This commit is contained in:
Mitchell Livingston 2020-11-17 22:07:45 -05:00
parent c25bfd70d0
commit 7651bb4821

View file

@ -77,6 +77,10 @@
[self setDelegate: self]; [self setDelegate: self];
fPiecesBarPercent = [fDefaults boolForKey: @"PiecesBar"] ? 1.0 : 0.0; fPiecesBarPercent = [fDefaults boolForKey: @"PiecesBar"] ? 1.0 : 0.0;
if (@available(macOS 11.0, *)) {
self.style = NSTableViewStyleFullWidth;
}
} }
return self; return self;