1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-11 17:51:04 +00:00

devtest: Improve tool and formspec usability

also fix the yawsprite test entity
This commit is contained in:
sfan5 2020-06-08 17:15:02 +02:00
parent 0ab580810c
commit a21f9bb7e6
3 changed files with 6 additions and 4 deletions

View file

@ -429,6 +429,7 @@ local editor_formspec = function(playername, obj, value, sel)
"label[0,0;"..F(title).."]"..
"textlist[0,0.5;9,7.5;object_props;"..list..";"..sel..";false]"..
"field[0.2,8.75;8,1;value;"..F(S("Value"))..";"..F(value).."]"..
"field_close_on_enter[value;false]"..
"button[8,8.5;1,1;submit;"..F(S("Submit")).."]"
)
end
@ -665,7 +666,7 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
return
end
end
if fields.submit then
if fields.key_enter_field == "value" or fields.submit then
local props = selected_objects[name]:get_properties()
local keys = property_formspec_data[name]
if (not property_formspec_index[name]) or (not props) then