Use List.children, not List.elements
This commit is contained in:
parent
1d29de8ace
commit
1482437161
@ -94,11 +94,11 @@ local function maxOrSum(shouldSum, values, getValue)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function List:getHeight()
|
function List:getHeight()
|
||||||
return maxOrSum(self:isVertical(), self.elements, function(e) return e:getHeight() end)
|
return maxOrSum(self:isVertical(), self.children, function(e) return e:getHeight() end)
|
||||||
end
|
end
|
||||||
|
|
||||||
function List:getWidth()
|
function List:getWidth()
|
||||||
return maxOrSum(self:isHorizontal(), self.elements, function(e) return e:getWidth() end)
|
return maxOrSum(self:isHorizontal(), self.children, function(e) return e:getWidth() end)
|
||||||
end
|
end
|
||||||
|
|
||||||
function List:findById(id)
|
function List:findById(id)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user