From 968d706e9b58e38d92b620fa92234aeb990569c8 Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Thu, 25 Feb 2021 02:13:21 -0500 Subject: [PATCH] Don't allow engine to add the implicit "Proceed" button (on lights anyway; this change makes it possible to theme the formspec) --- homedecor_lighting/init.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/homedecor_lighting/init.lua b/homedecor_lighting/init.lua index 9a1cf7d4..ab473868 100644 --- a/homedecor_lighting/init.lua +++ b/homedecor_lighting/init.lua @@ -162,7 +162,10 @@ if minetest.get_modpath("digilines") then if puncher:get_player_control().sneak then local name = puncher:get_player_name() player_last_clicked[name] = pos - local form = "field[channel;Channel;]" + local form = "formspec_version[4]".. + "size[8,4]".. + "button_exit[3,2.5;2,0.5;proceed;Proceed]".. + "field[1.75,1.5;4.5,0.5;channel;Channel;]" minetest.show_formspec(name, "homedecor:lamp_set_channel", form) end end