From 1482437161dabf1c72e81c7b7ae68da3bdc8f695 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 4 Oct 2024 13:41:48 +0200 Subject: [PATCH] Use List.children, not List.elements --- gfx/list.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/list.lua b/gfx/list.lua index 82ac390..0e74211 100644 --- a/gfx/list.lua +++ b/gfx/list.lua @@ -94,11 +94,11 @@ local function maxOrSum(shouldSum, values, getValue) end 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 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 function List:findById(id)