increase spacing around the text above the items page

("Filter:" and its search key, and the page or "No matches)
Adjust main and page flipping buttons' positions to compensate
This commit is contained in:
Vanessa Dannenberg 2021-03-07 04:26:11 -05:00
parent 97960c552b
commit eb4cf5bf47
2 changed files with 6 additions and 6 deletions

View File

@ -41,7 +41,7 @@ unified_inventory = {
pagecols = 8, pagecols = 8,
pagerows = 10, pagerows = 10,
page_x = 10.75, page_x = 10.75,
page_y = 1.25, page_y = 1.45,
craft_x = 2.8, craft_x = 2.8,
craft_y = 1.15, craft_y = 1.15,
resultstr_y = 0.6, resultstr_y = 0.6,

View File

@ -53,15 +53,15 @@ function unified_inventory.get_per_player_formspec(player_name)
ui.pagecols = 4 ui.pagecols = 4
ui.pagerows = 6 ui.pagerows = 6
ui.page_x = 10.5 ui.page_x = 10.5
ui.page_y = 1.1 ui.page_y = 1.25
ui.craft_x = 2.6 ui.craft_x = 2.6
ui.craft_y = 0.75 ui.craft_y = 0.75
ui.resultstr_y = 0.35 ui.resultstr_y = 0.35
ui.give_btn_x = 0.15 ui.give_btn_x = 0.15
ui.main_button_x = ui.page_x ui.main_button_x = ui.page_x
ui.main_button_y = 7.8 ui.main_button_y = 7.9
ui.page_buttons_x = ui.page_x ui.page_buttons_x = ui.page_x
ui.page_buttons_y = 6.2 ui.page_buttons_y = 6.3
ui.searchwidth = 1.6 ui.searchwidth = 1.6
ui.form_header_x = 0.2 ui.form_header_x = 0.2
ui.form_header_y = 0.2 ui.form_header_y = 0.2
@ -276,8 +276,8 @@ function unified_inventory.get_formspec(player, page)
n= n+1 n= n+1
if unified_inventory.activefilter[player_name] ~= "" then if unified_inventory.activefilter[player_name] ~= "" then
formspec[n] = "label["..ui_peruser.page_x..","..(ui_peruser.page_y - 0.55)..";" .. F(S("Filter")) .. ":]" formspec[n] = "label["..ui_peruser.page_x..","..(ui_peruser.page_y - 0.65)..";" .. F(S("Filter")) .. ":]"
formspec[n+1] = "label["..ui_peruser.page_x..","..(ui_peruser.page_y - 0.2)..";"..F(unified_inventory.activefilter[player_name]).."]" formspec[n+1] = "label["..ui_peruser.page_x..","..(ui_peruser.page_y - 0.25)..";"..F(unified_inventory.activefilter[player_name]).."]"
end end
return table.concat(formspec, "") return table.concat(formspec, "")
end end