forked from mtcontrib/display_modpack
Merge pull request #11 from Thomas--S/formspec
Use default formspec style
This commit is contained in:
commit
d2fadaea7b
|
@ -37,6 +37,7 @@ function signs.set_formspec(pos)
|
|||
|
||||
if maxlines == 1 then
|
||||
formspec = "size[6,3]"..
|
||||
default.gui_bg .. default.gui_bg_img .. default.gui_slots ..
|
||||
"field[0.5,0.7;5.5,1;display_text;"..F("Text")..";${display_text}]"..
|
||||
"button_exit[2,2;2,1;ok;"..F("Write").."]"
|
||||
else
|
||||
|
@ -46,6 +47,7 @@ function signs.set_formspec(pos)
|
|||
end
|
||||
|
||||
formspec = "size[6,4]"..
|
||||
default.gui_bg .. default.gui_bg_img .. default.gui_slots ..
|
||||
"textarea[0.5,0.7;5.5,2;display_text;"..F("Text")..""..extralabel..";${display_text}]"..
|
||||
"button_exit[2,3;2,1;ok;"..F("Write").."]"
|
||||
end
|
||||
|
|
|
@ -59,6 +59,7 @@ local function edit_poster(pos, node, player)
|
|||
if not minetest.is_protected(pos, player:get_player_name()) then
|
||||
formspec =
|
||||
"size[6.5,7.5]"..
|
||||
default.gui_bg .. default.gui_bg_img .. default.gui_slots ..
|
||||
"field[0.5,0.7;6,1;display_text;"..F("Title")..";"..
|
||||
minetest.formspec_escape(meta:get_string("display_text")).."]"..
|
||||
"textarea[0.5,1.7;6,6;text;"..F("Text")..";"..
|
||||
|
|
|
@ -63,6 +63,7 @@ for i, material in ipairs(steles.materials) do
|
|||
on_construct = function(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("formspec", "size[6,4]"
|
||||
..default.gui_bg .. default.gui_bg_img .. default.gui_slots
|
||||
.."textarea[0.5,0.7;5.5,2;display_text;"
|
||||
..F("Displayed text (3 lines max)")
|
||||
..";${display_text}]"
|
||||
|
|
Loading…
Reference in New Issue
Block a user