From cb9720fa1c26f471055088a98b4c5eff34be7a50 Mon Sep 17 00:00:00 2001 From: Oversword Date: Thu, 1 Apr 2021 23:28:12 +0100 Subject: [PATCH] Adjustments to lite mode category background and spacing --- init.lua | 4 ++-- internal.lua | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/init.lua b/init.lua index 03b4244..d19c3b1 100644 --- a/init.lua +++ b/init.lua @@ -85,7 +85,7 @@ ui.style_lite = { pagecols = 4, pagerows = 5, page_x = 10.5, - page_y = 2.05, + page_y = 2.15, craft_x = 2.6, craft_y = 0.75, craftresult_x = 5.75, @@ -100,7 +100,7 @@ ui.style_lite = { main_button_x = 10.5, main_button_y = 8.15, page_buttons_x = 10.5, - page_buttons_y = 6.3, + page_buttons_y = 6.15, searchwidth = 1.6, form_header_x = 0.2, form_header_y = 0.2, diff --git a/internal.lua b/internal.lua index 6272a7a..a7730d7 100644 --- a/internal.lua +++ b/internal.lua @@ -127,15 +127,15 @@ function ui.get_formspec(player, page) -- Category filters local categories_pos = { ui_peruser.page_x, ui_peruser.page_y-ui_peruser.btn_spc-0.5 } - local categories_scroll_pos = { ui_peruser.page_x, ui_peruser.form_header_y-(draw_lite_mode and 0.1 or 0.2) } + local categories_scroll_pos = { ui_peruser.page_x, ui_peruser.form_header_y-(draw_lite_mode and 0 or 0.2) } formspec[n] = string.format("background9[%f,%f;%f,%f;%s;false;3]", - ui_peruser.page_x-0.1, ui_peruser.form_header_y-0.2, - (ui_peruser.btn_spc * ui_peruser.pagecols) + 0.16, 1.6, + ui_peruser.page_x-0.1, categories_scroll_pos[1], + (ui_peruser.btn_spc * ui_peruser.pagecols) + 0.13, 1.4+(draw_lite_mode and 0 or 0.2), "ui_smallbg_9_sliced.png") n = n + 1 - formspec[n] = string.format("label[%f,%f;%s]", ui_peruser.page_x, ui_peruser.form_header_y+0.2, "Category:") + formspec[n] = string.format("label[%f,%f;%s]", ui_peruser.page_x, ui_peruser.form_header_y+(draw_lite_mode and 0.3 or 0.2), "Category:") n = n + 1 local scroll_offset = 0