]> git.lizzy.rs Git - dragonfireclient.git/commitdiff
Make the primary, flow-advancing action the right-most (#7594)
authortexmex <josefsahlberg+minetest@gmail.com>
Tue, 31 Jul 2018 20:00:42 +0000 (22:00 +0200)
committerSmallJoker <SmallJoker@users.noreply.github.com>
Tue, 31 Jul 2018 20:00:42 +0000 (22:00 +0200)
builtin/mainmenu/tab_local.lua

index ec99c394630bec3419cceab34ef8f0e6f5678bdb..45d3027f88aca3a1f9ad7f850b117bdfd86cfb22 100644 (file)
@@ -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")) .. "]"..