From e985bcba6318ca092ca046a5cd36ed66344dbdc6 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 4 Oct 2024 01:12:30 +0200 Subject: [PATCH] Adjust child positions on List reload --- gfx/list.lua | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/gfx/list.lua b/gfx/list.lua index df9dda6..f8084d4 100644 --- a/gfx/list.lua +++ b/gfx/list.lua @@ -24,9 +24,6 @@ function List:insertChild(child, atIndex) -- Update window references self:_reload() - - -- Update render positions - adjustPositions(self.children, self:isVertical(), index) end function List:removeChild(child) @@ -57,9 +54,6 @@ function List:removeChild(child) local removed = table.remove(self.children, index) self:_reload() - if index <= #self.children then - adjustPositions(self.children, self:isVertical(), index) - end return true, removed end @@ -137,6 +131,8 @@ function List:_reload() child:setParent(win) end end + + adjustPositions(self.children, self:isVertical(), 1) end return List \ No newline at end of file