diff --git a/builtin/mainmenu/tab_credits.lua b/builtin/mainmenu/tab_credits.lua index 0633f5785..597e65035 100644 --- a/builtin/mainmenu/tab_credits.lua +++ b/builtin/mainmenu/tab_credits.lua @@ -96,10 +96,10 @@ return { caption = fgettext("Credits"), cbf_formspec = function(tabview, name, tabdata) local version = core.get_version() - return "label[0.1,0;MultiCraft Open Source Project, ver. " .. version.string .. "]" .. - "label[0.1,0.25;Copyright (c) 2014-2019 MultiCraft Developement Team]" .. + return "label[0.1,-0.1;MultiCraft Open Source Project, ver. " .. version.string .. "]" .. + "label[0.1,0.2;Copyright (c) 2014-2019 MultiCraft Developement Team]" .. "label[0.1,0.5;Home page: https://github.com/MultiCraftProject/MultiCraft]" .. - "label[0.1,0.75;Licence: LGPLv3.0+ and CC-BY-SA 3.0]" .. + "label[0.1,0.8;Licence: LGPLv3.0+ and CC-BY-SA 3.0]" .. "tablecolumns[color;text]" .. "tableoptions[background=#999999;highlight=#00000000;border=true]" .. "table[0,1.6;11.8,3.8;list_credits;" .. diff --git a/builtin/mainmenu/tab_local.lua b/builtin/mainmenu/tab_local.lua index 2643815ba..75d7e79fd 100644 --- a/builtin/mainmenu/tab_local.lua +++ b/builtin/mainmenu/tab_local.lua @@ -49,7 +49,7 @@ local function get_formspec(tabview, name, tabdata) "local_creative_" .. tostring(creative_mode) .. "_btn.png") .. ";cb_creative_mode;;true;false]" .. - "textlist[0,0;6.24,4.6;sp_worlds;" .. + "textlist[-0.025,0.01;6.3,4.63;sp_worlds;" .. menu_render_worldlist() .. ";" .. index .. ";true]" return retval diff --git a/builtin/mainmenu/tab_online.lua b/builtin/mainmenu/tab_online.lua index dd6c19dbb..c1a945230 100644 --- a/builtin/mainmenu/tab_online.lua +++ b/builtin/mainmenu/tab_online.lua @@ -50,9 +50,9 @@ local function get_formspec(tabview, name, tabdata) -- Name / Password "label[7.1,0.85;" .. fgettext("Name:") .. "]" .. "label[10.22,0.85;" .. fgettext("Password:") .. "]" .. - "field[7.4,1.75;2.86,0.5;te_name;;" .. + "field[7.4,1.75;3.2,0.5;te_name;;" .. core.formspec_escape(core.settings:get("name")) .. "]" .. - "pwdfield[10.5,1.8;1.86,0.5;te_pwd;]" .. + "pwdfield[10.5,1.8;1.86,0.39;te_pwd;]" .. -- Description Background "box[7.1,2.1;4.8,2.65;#999999]".. @@ -72,7 +72,9 @@ local function get_formspec(tabview, name, tabdata) end --favourites - retval = retval .. "tablecolumns[" .. + retval = retval .. + "tableoptions[background=#00000000;border=false]" .. + "tablecolumns[" .. image_column(fgettext("")) .. ";" .. image_column(fgettext("Favorite"), "favorite") .. ";" .. image_column(fgettext("Ping")) .. ",padding=0.25;" .. diff --git a/textures/base/bg_local.png b/textures/base/bg_local.png index e296ba7ac..9dcb5d574 100644 Binary files a/textures/base/bg_local.png and b/textures/base/bg_local.png differ diff --git a/textures/base/bg_online.png b/textures/base/bg_online.png index 58aa58d1f..d183cb920 100644 Binary files a/textures/base/bg_online.png and b/textures/base/bg_online.png differ