one less redundant call in TorrentCell

This commit is contained in:
Mitchell Livingston 2007-08-11 02:12:47 +00:00
parent 1436214b4e
commit 963c8ae76f
1 changed files with 6 additions and 7 deletions

View File

@ -202,7 +202,7 @@ static uint32_t kRed = BE(0xFF6450FF), //255, 100, 80
[fErrorImage drawInRect: errorRect fromRect: NSZeroRect operation: NSCompositeSourceOver fraction: 1.0];
}
//title
//text color
BOOL highlighted = [self isHighlighted] && [[self highlightColorWithFrame: cellFrame inView: controlView]
isEqual: [NSColor alternateSelectedControlColor]];
NSColor * titleColor, * statusColor;
@ -218,15 +218,14 @@ static uint32_t kRed = BE(0xFF6450FF), //255, 100, 80
statusColor = [NSColor darkGrayColor];
}
NSRect titleRect = [self titleRectForBounds: cellFrame];
[[self attributedTitleWithColor: titleColor] drawInRect: titleRect];
//minimal status
NSRect minimalStatusRect = [self minimalStatusRectForBounds: cellFrame];
if (minimal)
{
NSRect minimalStatusRect = [self minimalStatusRectForBounds: cellFrame];
[[self attributedMinimalStatusWithColor: statusColor] drawInRect: minimalStatusRect];
}
//title
NSRect titleRect = [self rectForTitleBasedOnMinimalStatusRect: minimalStatusRect inBounds: cellFrame];
[[self attributedTitleWithColor: titleColor] drawInRect: titleRect];
//progress
NSRect progressRect;