1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +00:00

#3705 Magnet hash text obscured when selected in torrent table view

This commit is contained in:
Mitchell Livingston 2010-11-02 03:36:28 +00:00
parent 4aa9ace6fa
commit 8e6c7f3249

View file

@ -610,8 +610,8 @@
//fill an all-white bar for magnet links
if ([torrent isMagnet])
{
[[NSColor whiteColor] set];
NSRectFill(barRect);
[[NSColor colorWithCalibratedWhite: 1.0 alpha: [fDefaults boolForKey: @"SmallView"] ? 0.25 : 1.0] set];
NSRectFillUsingOperation(barRect, NSCompositeSourceOver);
return;
}