diff --git a/system/formspec/formspec_creation.lua b/system/formspec/formspec_creation.lua index db26c43..2caa49a 100644 --- a/system/formspec/formspec_creation.lua +++ b/system/formspec/formspec_creation.lua @@ -50,7 +50,7 @@ mtimer.dialog.main_menu = function (player_name) 'button[0,1.5;3,1;timezone_offset;'..S('Timezone Offset')..']', 'container_end[]', 'container[0,4.55]', - 'box[0,0;+linewidth,0.02;#ffffff]', + 'box[0,0;+linewidth,0.04;#ffffff]', 'button[4.5,0.225;2.5,1;reset_everything;'..S('Reset Everything')..']', 'button_exit[7,0.225;2.5,1;exit;'..S('Exit')..']', 'container_end[]' diff --git a/system/formspec/formspec_helpers.lua b/system/formspec/formspec_helpers.lua index 3ae07b8..659f1e0 100644 --- a/system/formspec/formspec_helpers.lua +++ b/system/formspec/formspec_helpers.lua @@ -80,7 +80,7 @@ mtimer.show_formspec = function (name, def) local buttons = not add_buttons and '' or table.concat({ 'container[0,+buttons]', - 'box[0,0;+linewidth,0.02;#ffffff]', + 'box[0,0;+linewidth,0.04;#ffffff]', 'button[+defbutton,0.2;2,1;default;'..S('Default')..']', 'button[+mainbutton,0.2;2,1;main_menu;'..S('Main Menu')..']', 'button_exit[+exitbutton,0.2;2,1;exit;'..S('Exit')..']', @@ -90,7 +90,7 @@ mtimer.show_formspec = function (name, def) local formspec = table.concat({ 'size[+width,+height]', 'label[0,-0.1;+title]', - 'box[0,0.5;+linewidth,0.02;#ffffff]', + 'box[0,0.5;+linewidth,0.04;#ffffff]', 'container[0,+content]', table.concat(def.formspec, ' '), 'container_end[]',