From 066e0a5d9d82a37d730eee73a1fa2fbf94e1e9c3 Mon Sep 17 00:00:00 2001 From: Jean-Patrick Guerrero Date: Mon, 26 Sep 2022 03:17:34 +0200 Subject: [PATCH] Improve wording --- src/gui.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui.lua b/src/gui.lua index 2c0b6a0..8600fcf 100644 --- a/src/gui.lua +++ b/src/gui.lua @@ -608,7 +608,7 @@ local function show_settings(fs, data) local X = 2.5 button(X, 9.1, 1.6, 0.55, "setting_home", "Home") button(X + 1.7, 9.1, 1.6, 0.55, "setting_style", "Style") - button(X + 3.38, 9.1, 1.6, 0.55, "setting_sorting", "Sorting") + button(X + 3.4, 9.1, 1.6, 0.55, "setting_sorting", "Sorting") image_button(X + 5.12, 9.2, 0.25, 0.25, PNG.cancel_hover .. "^\\[brighten", "close_settings", "") if show_home then @@ -632,7 +632,7 @@ local function show_settings(fs, data) checkbox(2.6, 10.85, "cb_wielditem_hud", "HUD description", tostring(data.wielditem_hud)) if not recipe_filter_set() then - checkbox(5.3, 10.85, "cb_collapse", "Collapse inventory", tostring(data.collapse)) + checkbox(5.3, 10.85, "cb_collapse", "Collapse list", tostring(data.collapse)) end local sign = (data.font_size > 0 and "+") or (data.font_size > 0 and "-") or "" @@ -649,7 +649,7 @@ local function show_settings(fs, data) fs("tooltip[cb_wielditem_hud;%s;#707070;#fff]", ES"Enable this option to show the wielded item description in your HUD") fs("tooltip[cb_collapse;%s;#707070;#fff]", - ES"Enable this option to collapse certain items in your inventory") + ES"Enable this option to collapse the inventory list by grouping some items") elseif show_sorting then checkbox(2.6, 9.95, "cb_inv_compress", "Compression", tostring(data.inv_compress))