From: Alexander Strange Date: Wed, 11 Feb 2004 03:40:44 +0000 (+0000) Subject: Cleaning up the track art code (It still doesn't work right, but it's cleaner!) X-Git-Tag: v1.3~36 X-Git-Url: http://git.ithinksw.org/MenuTunes.git/commitdiff_plain/8d366f34247fb0cda40b9608db52735947c497a9 Cleaning up the track art code (It still doesn't work right, but it's cleaner!) --- diff --git a/StatusWindowController.m b/StatusWindowController.m index 3bcc2ab..8946095 100755 --- a/StatusWindowController.m +++ b/StatusWindowController.m @@ -114,6 +114,7 @@ static StatusWindowController *sharedController; NSString *text = title; if ( art != nil ) { + /* NSImageRep *artRep = [art bestRepresentationForDevice:nil]; image = [[NSImage alloc] initWithSize:NSMakeSize(110, 110)]; [image lockFocus]; @@ -123,7 +124,10 @@ static StatusWindowController *sharedController; [artRep drawInRect:NSMakeRect(3, 3, 104, 104)]; } [image unlockFocus]; - [image autorelease]; + [image autorelease];*/ + image = art; + [image setScalesWhenResized:YES]; + [image setSize:NSMakeSize(110,110)]; } else if ( source == ITMTRemoteLibrarySource ) { image = [NSImage imageNamed:@"Library"]; } else if ( source == ITMTRemoteCDSource ) {