Fix lua style

This commit is contained in:
Alisher Galiev 2025-04-08 21:31:47 +05:00
parent c59aa5e4c9
commit 88e638d578

View file

@ -44,10 +44,10 @@ function M:spot_base(job)
end end
if #info.fonts > 0 then if #info.fonts > 0 then
rows[#rows + 1] = ui.Row({ " Fonts:", tostring(info.fonts[1]) }) rows[#rows + 1] = ui.Row { " Fonts:", tostring(info.fonts[1]) }
for i = 2, #info.fonts do for i = 2, #info.fonts do
rows[#rows + 1] = ui.Row({ "", tostring(info.fonts[i]) }) rows[#rows + 1] = ui.Row { "", tostring(info.fonts[i]) }
end end
end end