diff options
author | Niklp <89982526+Niklp09@users.noreply.github.com> | 2022-09-02 02:05:40 +0200 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2022-09-14 13:48:06 +0200 |
commit | 4ef221a645fd4023ebed61cee345af59cb3fbd7e (patch) | |
tree | d5dcf807c320cf2c1772b4496ee758ee02af747e | |
parent | 79010e972ebe6e381d6b5402e5399ad4117dd374 (diff) | |
download | minetest-4ef221a645fd4023ebed61cee345af59cb3fbd7e.tar.gz minetest-4ef221a645fd4023ebed61cee345af59cb3fbd7e.tar.bz2 minetest-4ef221a645fd4023ebed61cee345af59cb3fbd7e.zip |
Fix incorrectly placed label in tab_online (#12732)
-rw-r--r-- | builtin/mainmenu/tab_online.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/mainmenu/tab_online.lua b/builtin/mainmenu/tab_online.lua index 899f30bd1..ad5f79eaa 100644 --- a/builtin/mainmenu/tab_online.lua +++ b/builtin/mainmenu/tab_online.lua @@ -94,7 +94,7 @@ local function get_formspec(tabview, name, tabdata) -- Name / Password "container[0,4.8]" .. "label[0.25,0;" .. fgettext("Name") .. "]" .. - "label[3,0;" .. fgettext("Password") .. "]" .. + "label[2.875,0;" .. fgettext("Password") .. "]" .. "field[0.25,0.2;2.625,0.75;te_name;;" .. core.formspec_escape(core.settings:get("name")) .. "]" .. "pwdfield[2.875,0.2;2.625,0.75;te_pwd;]" .. "container_end[]" .. |