Fix offset of buttons

This commit is contained in:
ShadowNinja 2013-09-28 19:24:43 -04:00
parent 88a740c840
commit dcb7f2ec2b
1 changed files with 1 additions and 3 deletions

View File

@ -22,15 +22,13 @@ function unified_inventory.get_formspec(player, page)
end
-- Main buttons
local i = 0
for i, def in pairs(unified_inventory.buttons) do
if def.type == "image" then
formspec = formspec.."image_button["
..(0.65 * i)..",9;0.8,0.8;"
..(0.65 * (i - 1))..",9;0.8,0.8;"
..minetest.formspec_escape(def.image)..";"
..minetest.formspec_escape(def.name)..";]"
end
i = i + 1
end
-- Controls to flip items pages