Этот коммит содержится в:
Hugues Ross 2020-06-26 18:02:18 -04:00
родитель bab77d00e4
Коммит 9cf75f54c2
2 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -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 {

Просмотреть файл

@ -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,