From: texmex Date: Tue, 31 Jul 2018 20:00:42 +0000 (+0200) Subject: Make the primary, flow-advancing action the right-most (#7594) X-Git-Tag: 5.0.0~275 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6afbb06c7e552462ba2e682718488c9b13bfa0e5;p=oweals%2Fminetest.git Make the primary, flow-advancing action the right-most (#7594) --- diff --git a/builtin/mainmenu/tab_local.lua b/builtin/mainmenu/tab_local.lua index ec99c3946..45d3027f8 100644 --- a/builtin/mainmenu/tab_local.lua +++ b/builtin/mainmenu/tab_local.lua @@ -94,8 +94,8 @@ local function get_formspec(tabview, name, tabdata) retval = retval .. "button[4,3.95;2.6,1;world_delete;".. fgettext("Delete") .. "]" .. - "button[6.5,3.95.15;2.8,1;world_create;".. fgettext("New") .. "]" .. - "button[9.2,3.95;2.5,1;world_configure;".. fgettext("Configure") .. "]" .. + "button[6.5,3.95;2.8,1;world_configure;".. fgettext("Configure") .. "]" .. + "button[9.2,3.95;2.5,1;world_create;".. fgettext("New") .. "]" .. "label[4,-0.25;".. fgettext("Select World:") .. "]".. "checkbox[0.25,0.25;cb_creative_mode;".. fgettext("Creative Mode") .. ";" .. dump(core.settings:get_bool("creative_mode")) .. "]"..