From 5d372b1cf127733d9addd832f584f05d87437b29 Mon Sep 17 00:00:00 2001 From: orwell96 Date: Mon, 22 Mar 2021 11:23:42 +0100 Subject: Increase size of LuaATC code input forms to 15x12 units The current size of the code form is rather limiting as it fills only a small part of the screen. Also adds global constant in init.lua so this can easily adapted in the future --- advtrains_luaautomation/active_common.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'advtrains_luaautomation/active_common.lua') diff --git a/advtrains_luaautomation/active_common.lua b/advtrains_luaautomation/active_common.lua index 36cb8cd..9bf8377 100644 --- a/advtrains_luaautomation/active_common.lua +++ b/advtrains_luaautomation/active_common.lua @@ -41,13 +41,13 @@ function ac.getform(pos, meta_p) sel=#envs_asvalues end end - local form = "size[10,10]" + local form = "size["..atlatc.CODE_FORM_SIZE.."]" .."style[code;font=mono]" .."label[0,-0.1;Environment]" .."dropdown[0,0.3;3;env;"..table.concat(envs_asvalues, ",")..";"..sel.."]" .."button[5,0.2;2,1;save;Save]" .."button[7,0.2;3,1;cle;Clear Local Env.]" - .."textarea[0.3,1.5;10,9.5;code;Code;"..minetest.formspec_escape(code).."]" + .."textarea[0.3,1.5;"..atlatc.CODE_FORM_SIZE..";code;Code;"..minetest.formspec_escape(code).."]" .."label[0,9.7;"..err.."]" return form end -- cgit v1.2.3