give the filter bar a darker bottom line

This commit is contained in:
Mitchell Livingston 2010-12-04 04:08:24 +00:00
parent 03632ac9d8
commit a1bee768e0
1 changed files with 2 additions and 1 deletions

View File

@ -99,7 +99,8 @@
if (NSIntersectsRect(lineBorderRect, rect)) if (NSIntersectsRect(lineBorderRect, rect))
{ {
gridRects[count] = lineBorderRect; gridRects[count] = lineBorderRect;
colorRects[count] = fGrayBorderColor; colorRects[count] = [[self window] isMainWindow] ? [NSColor colorWithCalibratedWhite: 0.25 alpha: 1.0]
: [NSColor colorWithCalibratedWhite: 0.5 alpha: 1.0];
++count; ++count;
rect.origin.y += 1.0; rect.origin.y += 1.0;