Preserve aspect ratios in track art
[MenuTunes.git] / StatusWindowController.m
index 117c205..75a1a9d 100755 (executable)
@@ -114,16 +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];
+       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 ) {
@@ -275,7 +271,7 @@ static StatusWindowController *sharedController;
 {
     NSString *message = @"The selected shared player is available again.\nWould you like to reconnect to it?.";
 
-    [_window setImage:[NSImage imageNamed:@"Register"]];
+    [_window setImage:[NSImage imageNamed:@"Setup"]];
     [_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
     [_window buildDialogWindowWithMessage:message
                             defaultButton:@"Reconnect"