Small change to album art.
authorKent Sutherland <ksuther@ithinksw.com>
Thu, 12 Feb 2004 02:24:12 +0000 (02:24 +0000)
committerKent Sutherland <ksuther@ithinksw.com>
Thu, 12 Feb 2004 02:24:12 +0000 (02:24 +0000)
MainController.m

index 0bc7085..eadc1b6 100755 (executable)
@@ -814,6 +814,7 @@ static MainController *sharedController;
         if ( [df boolForKey:@"showAlbumArtwork"] ) {
              NS_DURING
                 art = [[self currentRemote] currentSongAlbumArt];
+                art = [[[[NSImage alloc] initWithData:[art TIFFRepresentation]] autorelease] imageScaledSmoothlyToSize:NSMakeSize(110,110)];
             NS_HANDLER
                 [self networkError:localException];
             NS_ENDHANDLER
@@ -829,7 +830,7 @@ static MainController *sharedController;
                                                     time:time
                                                    track:track
                                                   rating:rating
-                                                   image:[[[[NSImage alloc] initWithData:[art TIFFRepresentation]] autorelease] imageScaledSmoothlyToSize:NSMakeSize(110,110)]];
+                                                   image:art];
 }
 
 - (void)showUpcomingSongs