From: Kent Sutherland Date: Thu, 12 Feb 2004 02:24:12 +0000 (+0000) Subject: Small change to album art. X-Git-Tag: v1.3~32 X-Git-Url: http://git.ithinksw.org/MenuTunes.git/commitdiff_plain/03b8705191a7570ac7460b3393a4e8f1f49c908c Small change to album art. --- diff --git a/MainController.m b/MainController.m index 0bc7085..eadc1b6 100755 --- a/MainController.m +++ b/MainController.m @@ -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