Fix too large text area in ship return dialog

This commit is contained in:
Wuzzy 2024-12-15 13:31:05 +01:00
parent e0fe65765f
commit a4d7c8970e

View File

@ -35,7 +35,7 @@ local on_rightclick_exit = function(pos, node, clicker)
local message = S("Do you want to return to your ship?")
local form = "formspec_version[7]size[8,2.5]"..
"textarea[0.5,0.5;7,1.8;;;"..F(message).."]"..
"textarea[0.5,0.5;7,0.8;;;"..F(message).."]"..
"button_exit[1.25,1.5;2,0.6;return_to_ship;"..FS("Yes").."]"..
"set_focus[cancel]"..
"button_exit[4.75,1.5;2,0.6;cancel;"..FS("No").."]"