Formspec background fixes
This commit is contained in:
parent
bab77d00e4
commit
9cf75f54c2
@ -15,7 +15,9 @@ local gui = {
|
|||||||
-- Returns a table. Calling table.concat on the result will produce
|
-- Returns a table. Calling table.concat on the result will produce
|
||||||
-- a usable formspec string.
|
-- a usable formspec string.
|
||||||
function gui.formspec(args)
|
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
|
if args.bg then
|
||||||
data = data .. gui.bg9 {
|
data = data .. gui.bg9 {
|
||||||
|
@ -137,10 +137,10 @@ function fs.header(w, h, rank, tab, skin)
|
|||||||
bg = skin.background,
|
bg = skin.background,
|
||||||
},
|
},
|
||||||
gui.bg9 {
|
gui.bg9 {
|
||||||
x = 0.0625,
|
x = 0.125,
|
||||||
y = 0.125,
|
y = 0.125,
|
||||||
|
|
||||||
w = w - 0.125,
|
w = w - 0.25,
|
||||||
h = h - 0.25,
|
h = h - 0.25,
|
||||||
|
|
||||||
skin = skin.inner_background,
|
skin = skin.inner_background,
|
||||||
|
Loading…
Reference in New Issue
Block a user