From 03b8705191a7570ac7460b3393a4e8f1f49c908c Mon Sep 17 00:00:00 2001 From: Kent Sutherland Date: Thu, 12 Feb 2004 02:24:12 +0000 Subject: [PATCH] Small change to album art. --- MainController.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.20.1