From 1c82f3b9981bc0bb8f42b2e89df6b2ab79e441e1 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 7 Dec 2016 11:21:01 +0100 Subject: Allow gallery to display item images --- init.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'init.lua') diff --git a/init.lua b/init.lua index 04fda87..8de2874 100644 --- a/init.lua +++ b/init.lua @@ -609,7 +609,11 @@ doc.widgets.gallery = function(imagedata, playername, x, y, aspect_ratio, width, 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.."]" + if imagedata[i].imagetype == "item" then + formstring = formstring .. "item_image["..xoffset..","..y..";"..iw..","..ih..";"..imagedata[i].image.."]" + else + formstring = formstring .. "image["..xoffset..","..y..";"..iw..","..ih..";"..imagedata[i].image.."]" + end formstring = formstring .. "label["..nx..","..ny..";"..i.."]" pos = pos + 1 end -- cgit v1.2.3