Properly delegate sub-windows on container element reload
This commit is contained in:
parent
5014f68f7f
commit
64613d943b
@ -29,14 +29,6 @@ function List:insertChild(child, atIndex)
|
|||||||
adjustPositions(self.children, self:isVertical(), index)
|
adjustPositions(self.children, self:isVertical(), index)
|
||||||
end
|
end
|
||||||
|
|
||||||
function List:setParent(parent)
|
|
||||||
Element.setParent(self, parent)
|
|
||||||
local win = self:_getWindow()
|
|
||||||
for _,child in ipairs(self.children) do
|
|
||||||
child:setParent(win)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function List:removeChild(child)
|
function List:removeChild(child)
|
||||||
local index
|
local index
|
||||||
local searchType = type(child)
|
local searchType = type(child)
|
||||||
|
@ -88,4 +88,9 @@ function Padding:handleEvent(evt)
|
|||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function Padding:_reload()
|
||||||
|
Element._reload(self)
|
||||||
|
self.element:setParent(self:_getWindow())
|
||||||
|
end
|
||||||
|
|
||||||
return Padding
|
return Padding
|
Loading…
x
Reference in New Issue
Block a user