diff --git a/Source/NSWindow.m b/Source/NSWindow.m index 3bd1de843..2a9b4c611 100644 --- a/Source/NSWindow.m +++ b/Source/NSWindow.m @@ -264,7 +264,7 @@ static NSCell *tileCell = nil; + (void) initialize { - NSImage *tileImage = [NSImage imageNamed: @"common_Tile"]; + NSImage *tileImage = [NSImage imageNamed: @"common_MiniWindowTile"]; tileCell = [[NSCell alloc] initImageCell: tileImage]; [tileCell setBordered: NO]; @@ -285,7 +285,7 @@ static NSCell *tileCell = nil; - (void) drawRect: (NSRect)rect { [tileCell drawWithFrame: NSMakeRect(0,0,64,64) inView: self]; - [imageCell drawWithFrame: NSMakeRect(8,8,48,48) inView: self]; + [imageCell drawWithFrame: NSMakeRect(8,4,48,48) inView: self]; [titleCell drawWithFrame: NSMakeRect(1,52,62,11) inView: self]; } @@ -371,8 +371,7 @@ static NSCell *tileCell = nil; [titleCell setEditable: NO]; [titleCell setBordered: NO]; [titleCell setAlignment: NSCenterTextAlignment]; - [titleCell setDrawsBackground: YES]; - [titleCell setBackgroundColor: [NSColor blackColor]]; + [titleCell setDrawsBackground: NO]; [titleCell setTextColor: [NSColor whiteColor]]; [titleCell setFont: [NSFont systemFontOfSize: 8]]; }