Adjust child positions on List reload
This commit is contained in:
parent
35db4aa970
commit
e985bcba63
@ -24,9 +24,6 @@ function List:insertChild(child, atIndex)
|
|||||||
|
|
||||||
-- Update window references
|
-- Update window references
|
||||||
self:_reload()
|
self:_reload()
|
||||||
|
|
||||||
-- Update render positions
|
|
||||||
adjustPositions(self.children, self:isVertical(), index)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function List:removeChild(child)
|
function List:removeChild(child)
|
||||||
@ -57,9 +54,6 @@ function List:removeChild(child)
|
|||||||
|
|
||||||
local removed = table.remove(self.children, index)
|
local removed = table.remove(self.children, index)
|
||||||
self:_reload()
|
self:_reload()
|
||||||
if index <= #self.children then
|
|
||||||
adjustPositions(self.children, self:isVertical(), index)
|
|
||||||
end
|
|
||||||
|
|
||||||
return true, removed
|
return true, removed
|
||||||
end
|
end
|
||||||
@ -137,6 +131,8 @@ function List:_reload()
|
|||||||
child:setParent(win)
|
child:setParent(win)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
adjustPositions(self.children, self:isVertical(), 1)
|
||||||
end
|
end
|
||||||
|
|
||||||
return List
|
return List
|
Loading…
x
Reference in New Issue
Block a user