From 8e6c7f324931413e3f463e714f795b8de499ec02 Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Tue, 2 Nov 2010 03:36:28 +0000 Subject: [PATCH] #3705 Magnet hash text obscured when selected in torrent table view --- macosx/TorrentCell.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macosx/TorrentCell.m b/macosx/TorrentCell.m index f3a029e04..8fb498432 100644 --- a/macosx/TorrentCell.m +++ b/macosx/TorrentCell.m @@ -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; } -- 2.40.0