diff options
author | Niklp <89982526+Niklp09@users.noreply.github.com> | 2022-09-02 02:05:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-02 01:05:40 +0100 |
commit | 2854c19792a1c11c46788d15b746cf3762984a38 (patch) | |
tree | dd2b18b160b7e5ab9d79a3e604ffe3f51005f297 | |
parent | 75d88dcae233757d9567c971227b33b0168b5254 (diff) | |
download | minetest-2854c19792a1c11c46788d15b746cf3762984a38.tar.xz |
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[]" .. |