Skip to content

Commit

Permalink
Mainmenu: Improve button alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezhh authored and paramat committed Nov 19, 2017
1 parent a02a361 commit c655984
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions builtin/mainmenu/tab_local.lua
Expand Up @@ -93,9 +93,9 @@ local function get_formspec(tabview, name, tabdata)
)

retval = retval ..
"button[4,4.15;2.6,0.5;world_delete;".. fgettext("Delete") .. "]" ..
"button[6.5,4.15;2.8,0.5;world_create;".. fgettext("New") .. "]" ..
"button[9.2,4.15;2.55,0.5;world_configure;".. fgettext("Configure") .. "]" ..
"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") .. "]" ..
"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")) .. "]"..
Expand All @@ -109,7 +109,7 @@ local function get_formspec(tabview, name, tabdata)

if core.settings:get_bool("enable_server") then
retval = retval ..
"button[8.5,5;3.25,0.5;play;".. fgettext("Host Game") .. "]" ..
"button[8.5,4.8;3.2,1;play;".. fgettext("Host Game") .. "]" ..
"checkbox[0.25,1.6;cb_server_announce;" .. fgettext("Announce Server") .. ";" ..
dump(core.settings:get_bool("server_announce")) .. "]" ..
"label[0.25,2.2;" .. fgettext("Name/Password") .. "]" ..
Expand All @@ -131,7 +131,7 @@ local function get_formspec(tabview, name, tabdata)
end
else
retval = retval ..
"button[8.5,5;3.25,0.5;play;".. fgettext("Play Game") .. "]"
"button[8.5,4.8;3.2,1;play;".. fgettext("Play Game") .. "]"
end

return retval
Expand Down
6 changes: 3 additions & 3 deletions builtin/mainmenu/tab_mods.lua
Expand Up @@ -84,9 +84,9 @@ local function get_formspec(tabview, name, tabdata)

if selected_mod.is_modpack then
retval = retval .. ";0]" ..
"button[10,4.85;2,0.5;btn_mod_mgr_rename_modpack;" ..
"button[9.9,4.65;2,1;btn_mod_mgr_rename_modpack;" ..
fgettext("Rename") .. "]"
retval = retval .. "button[5.5,4.85;4.5,0.5;btn_mod_mgr_delete_mod;"
retval = retval .. "button[5.5,4.65;4.5,1;btn_mod_mgr_delete_mod;"
.. fgettext("Uninstall Selected Modpack") .. "]"
else
--show dependencies
Expand All @@ -109,7 +109,7 @@ local function get_formspec(tabview, name, tabdata)

retval = retval .. ";0]"

retval = retval .. "button[5.5,4.85;4.5,0.5;btn_mod_mgr_delete_mod;"
retval = retval .. "button[5.5,4.65;4.5,1;btn_mod_mgr_delete_mod;"
.. fgettext("Uninstall Selected Mod") .. "]"
end
end
Expand Down
8 changes: 4 additions & 4 deletions builtin/mainmenu/tab_online.lua
Expand Up @@ -33,8 +33,8 @@ local function get_formspec(tabview, name, tabdata)

local retval =
-- Search
"field[0.15,0.35;6.05,0.27;te_search;;"..core.formspec_escape(tabdata.search_for).."]"..
"button[5.8,0.1;2,0.1;btn_mp_search;" .. fgettext("Search") .. "]" ..
"field[0.15,0.075;6.05,1;te_search;;"..core.formspec_escape(tabdata.search_for).."]"..
"button[5.8,-0.25;2,1;btn_mp_search;" .. fgettext("Search") .. "]" ..

-- Address / Port
"label[7.75,-0.25;" .. fgettext("Address / Port") .. "]" ..
Expand All @@ -53,11 +53,11 @@ local function get_formspec(tabview, name, tabdata)
"box[7.73,2.25;4.25,2.6;#999999]"..

-- Connect
"button[10.1,5.15;2,0.5;btn_mp_connect;" .. fgettext("Connect") .. "]"
"button[9.88,4.9;2.3,1;btn_mp_connect;" .. fgettext("Connect") .. "]"

if tabdata.fav_selected and fav_selected then
if gamedata.fav then
retval = retval .. "button[7.75,5.15;2.3,0.5;btn_delete_favorite;" ..
retval = retval .. "button[7.73,4.9;2.3,1;btn_delete_favorite;" ..
fgettext("Del. Favorite") .. "]"
end
if fav_selected.description then
Expand Down
6 changes: 3 additions & 3 deletions builtin/mainmenu/tab_settings.lua
Expand Up @@ -209,16 +209,16 @@ local function formspec(tabview, name, tabdata)

if PLATFORM == "Android" then
tab_string = tab_string ..
"button[8,4.75;4.1,1;btn_reset_singleplayer;"
"button[8,4.75;3.95,1;btn_reset_singleplayer;"
.. fgettext("Reset singleplayer world") .. "]"
else
tab_string = tab_string ..
"button[8,4.75;4,1;btn_change_keys;"
"button[8,4.75;3.95,1;btn_change_keys;"
.. fgettext("Change Keys") .. "]"
end

tab_string = tab_string ..
"button[0,4.75;4,1;btn_advanced_settings;"
"button[0,4.75;3.95,1;btn_advanced_settings;"
.. fgettext("Advanced Settings") .. "]"


Expand Down

0 comments on commit c655984

Please sign in to comment.