rickwookie;305331 Wrote: > I am getting the odd coverart too. It's been a while since I've played > around with SqueezePlay (last time I built it it was still called > jive). Anyone have any pointers as to where to look to fix this? I > remember playing around with the flickr screensaver before to get the > images scaled and rotated correctly and posted a patch (whatever > happened to that?). I'll have to refresh my lua skills again. ;-) >
Okay, in NowPlayingApplet.lua comment out 'local ARTWORK_SIZE = 350' (line 46) and at the start of the function '_getIcon' insert: local screenwidth, screenheight = Framework:getScreenSize() local ARTWORK_SIZE = screenwidth * .75 if screenwidth > screenheight then ARTWORK_SIZE = screenheight * .75 end I know it's not perfect (for odd aspect ratios) but it's a damn site better than a hard-coded value of 350! :-) -- rickwookie ------------------------------------------------------------------------ rickwookie's Profile: http://forums.slimdevices.com/member.php?userid=6397 View this thread: http://forums.slimdevices.com/showthread.php?t=47870 _______________________________________________ jive mailing list [email protected] http://lists.slimdevices.com/cgi-bin/mailman/listinfo/jive
