Preserve aspect ratios in track art
authorAlexander Strange <astrange@ithinksw.com>
Wed, 11 Feb 2004 03:55:47 +0000 (03:55 +0000)
committerAlexander Strange <astrange@ithinksw.com>
Wed, 11 Feb 2004 03:55:47 +0000 (03:55 +0000)
StatusWindowController.m

index 8946095..75a1a9d 100755 (executable)
@@ -114,20 +114,12 @@ static StatusWindowController *sharedController;
     NSString *text  = title;
     
     if ( art != nil ) {
-       /*
-        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];*/
+       NSSize oldSize;
        image = art;
        [image setScalesWhenResized:YES];
-       [image setSize:NSMakeSize(110,110)];
+       oldSize = [image size];
+       
+       [image setSize:NSMakeSize(110,oldSize.height * (110.0f / oldSize.width))];
     } else if ( source == ITMTRemoteLibrarySource ) {
         image = [NSImage imageNamed:@"Library"];
     } else if ( source == ITMTRemoteCDSource ) {