diff options
author | Wuzzy <almikes@aol.com> | 2016-12-05 13:36:47 +0100 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-12-05 13:36:47 +0100 |
commit | 7d8747ca289bb027e33fab5c1859bd042a75b90e (patch) | |
tree | 81f4b142d119f466acab2623d0e36e6c8b2dd307 /init.lua | |
parent | e4cace00761bac6abaf1de066aaebde57dbd8bb3 (diff) |
Get rid of a leaking global
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -606,7 +606,7 @@ doc.widgets.gallery = function(imagedata, playername, x, y, aspect_ratio, width, end end for i=imageindex, math.min(#imagedata, (imageindex-1)+rows) do - xoffset = buttonoffset + (x + pos * iw) + local xoffset = buttonoffset + (x + pos * iw) local nx = xoffset - 0.2 local ny = y - 0.05 formstring = formstring .. "image["..xoffset..","..y..";"..iw..","..ih..";"..imagedata[i].image.."]" |