Formspec background fixes

Este commit está contenido en:
Hugues Ross 2020-06-26 18:02:18 -04:00
padre bab77d00e4
commit 9cf75f54c2
Se han modificado 2 ficheros con 5 adiciones y 3 borrados

Ver fichero

@ -15,7 +15,9 @@ local gui = {
-- Returns a table. Calling table.concat on the result will produce
-- a usable formspec string.
function gui.formspec(args)
local data = string.format("formspec_version[%d] size[%f,%f] no_prepend[]", args.version or 3, args.w, args.h);
local data = string.format("formspec_version[%d] size[%f,%f] no_prepend[] bgcolor[#00000000;false]",
args.version or 3,
args.w, args.h);
if args.bg then
data = data .. gui.bg9 {

Ver fichero

@ -137,10 +137,10 @@ function fs.header(w, h, rank, tab, skin)
bg = skin.background,
},
gui.bg9 {
x = 0.0625,
x = 0.125,
y = 0.125,
w = w - 0.125,
w = w - 0.25,
h = h - 0.25,
skin = skin.inner_background,