summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWuzzy <almikes@aol.com>2016-12-02 17:20:51 +0100
committerWuzzy <almikes@aol.com>2016-12-02 17:20:51 +0100
commitb4a680447c17237c7eab3f47a9584ca0b971dd31 (patch)
tree081b75fb1ec4adbbb8312e02401e21d5f8f096d6
parent74814186b59be34c4975b6c5900e44dbd618ca09 (diff)
Add number next to gallery images
-rw-r--r--init.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/init.lua b/init.lua
index 325d15e..1023bba 100644
--- a/init.lua
+++ b/init.lua
@@ -580,7 +580,10 @@ doc.widgets.gallery = function(imagedata, playername, x, y, aspect_ratio, width,
end
for i=imageindex, math.min(#imagedata, (imageindex-1)+rows) do
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.."]"
+ formstring = formstring .. "label["..nx..","..ny..";"..i.."]"
pos = pos + 1
end
local bw, bh