From dcb7f2ec2b4e3aa310eb1dcd81488003818f7eb7 Mon Sep 17 00:00:00 2001
From: ShadowNinja <noreply@gmail.com>
Date: Sat, 28 Sep 2013 19:24:43 -0400
Subject: Fix offset of buttons

---
 internal.lua | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/internal.lua b/internal.lua
index 3c01a35..6d22530 100644
--- a/internal.lua
+++ b/internal.lua
@@ -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
-- 
cgit v1.2.3