Fix List width computation

This commit is contained in:
Gabriel Tofvesson 2024-10-04 00:58:54 +02:00
parent 64613d943b
commit 437b93a688

View File

@ -92,11 +92,11 @@ function List:getHeight()
end end
function List:getWidth() function List:getWidth()
local h = 0 local w = 0
for _,v in ipairs(self.children) do for _,v in ipairs(self.children) do
h = h + v:getHeight() w = w + v:getWidth()
end end
return h return w
end end
function List:findById(id) function List:findById(id)