X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/28ef52fed0fa8f1d49c604cabe52b846bf01d393..703be04ff6d1a493d2920adc9a07911c587aea14:/StatusWindowController.m diff --git a/StatusWindowController.m b/StatusWindowController.m index 85d94df..117c205 100755 --- a/StatusWindowController.m +++ b/StatusWindowController.m @@ -114,12 +114,16 @@ static StatusWindowController *sharedController; NSString *text = title; if ( art != nil ) { - image = art; - NSSize size = [image size]; - if (size.width > 110) { - [image setScalesWhenResized:YES]; - [image setSize:NSMakeSize(110, (size.width / size.height) * 110)]; + NSImageRep *artRep = [art bestRepresentationForDevice:nil]; + image = [[NSImage alloc] initWithSize:NSMakeSize(110, 110)]; + [image lockFocus]; + { + [[NSGraphicsContext currentContext] setImageInterpolation:NSImageInterpolationHigh]; + [[NSGraphicsContext currentContext] setShouldAntialias:YES]; + [artRep drawInRect:NSMakeRect(3, 3, 104, 104)]; } + [image unlockFocus]; + [image autorelease]; } else if ( source == ITMTRemoteLibrarySource ) { image = [NSImage imageNamed:@"Library"]; } else if ( source == ITMTRemoteCDSource ) {