Cleaning up the track art code (It still doesn't work right, but it's cleaner!)
authorAlexander Strange <astrange@ithinksw.com>
Wed, 11 Feb 2004 03:40:44 +0000 (03:40 +0000)
committerAlexander Strange <astrange@ithinksw.com>
Wed, 11 Feb 2004 03:40:44 +0000 (03:40 +0000)
StatusWindowController.m

index 3bcc2ab..8946095 100755 (executable)
@@ -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 ) {