From 9e85cc64c6126133176f6cd6b321984b1772b79f Mon Sep 17 00:00:00 2001
From: VanessaE <vanessaezekowitz@gmail.com>
Date: Fri, 08 Mar 2013 01:15:20 +0100
Subject: [PATCH] Merge pull request #12 from VanessaE/master

---
 unified_inventory/api.lua |   21 ++++++++++++++-------
 1 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/unified_inventory/api.lua b/unified_inventory/api.lua
index 01bcc8e..029ae68 100644
--- a/unified_inventory/api.lua
+++ b/unified_inventory/api.lua
@@ -129,27 +129,27 @@
 	-- backgrounds
 		formspec = formspec .. "background[-0.19,-0.2,;14.38,10.55;ui_form_bg.png]"
 	if page=="craft" then
-		formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_crafting_form.png]"
+		formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_crafting_form.png]"
 		end
 	if page=="craftguide" then
-		formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_craftguide_form.png]"
+		formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_craftguide_form.png]"
 		end
 	if page=="misc" then
-		formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_misc_form.png]"
+		formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_misc_form.png]"
 		end
 	if page=="bags" then
-		formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_bags_main_form.png]"
+		formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_bags_main_form.png]"
 		end
 
 	for i=1,4 do
 		if page=="bag"..i then
 			local slots = player:get_inventory():get_stack(page, 1):get_definition().groups.bagslots
 			if slots == 8 then
-				formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_bags_sm_form.png]"
+				formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_bags_sm_form.png]"
 			elseif slots == 16 then
-				formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_bags_med_form.png]"
+				formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_bags_med_form.png]"
 			elseif slots == 24 then
-				formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_bags_lg_form.png]"
+				formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_bags_lg_form.png]"
 			end
 		end
 	end
@@ -505,6 +505,13 @@
 	local player_name = player:get_player_name() 
 	local size=0
 	local str_temp1=string.lower(filter)
+	if str_temp1 ~= "" then 
+		for i=1,str_temp1:len(),1 do
+			if string.byte(str_temp1,i) == 91 then 
+				str_temp1=""
+				end
+			end
+	end
 	local str_temp2
 	local str_temp3
 	unified_inventory.filtered_items_list[player_name]={}

--
Gitblit v1.8.0