From 8d366f34247fb0cda40b9608db52735947c497a9 Mon Sep 17 00:00:00 2001 From: Alexander Strange Date: Wed, 11 Feb 2004 03:40:44 +0000 Subject: [PATCH] Cleaning up the track art code (It still doesn't work right, but it's cleaner!) --- StatusWindowController.m | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 ) { -- 2.20.1