Fix List width computation
This commit is contained in:
parent
64613d943b
commit
437b93a688
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user