Fix overlapping icons and numbers for the git status in incline status bar

This commit is contained in:
Martin Larsson 2024-05-25 14:45:19 +02:00
parent c507d0f7b6
commit d242ba8e6e

View file

@ -29,7 +29,7 @@ return {
end end
for name, icon in pairs(icons) do for name, icon in pairs(icons) do
if tonumber(signs[name]) and signs[name] > 0 then if tonumber(signs[name]) and signs[name] > 0 then
table.insert(labels, { icon .. signs[name] .. " ", group = "Diff" .. name }) table.insert(labels, { icon .. " " .. signs[name] .. " ", group = "Diff" .. name })
end end
end end
if #labels > 0 then if #labels > 0 then