Fix Children reload order
This commit is contained in:
parent
0d8c7ab16b
commit
86e251152c
@ -130,7 +130,7 @@ function Element:setVisible(visible)
|
|||||||
self.visible = visible
|
self.visible = visible
|
||||||
if win ~= nil then
|
if win ~= nil then
|
||||||
self:setDirty()
|
self:setDirty()
|
||||||
self:_getWindow().setVisible(visible)
|
win.setVisible(visible)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -57,6 +57,7 @@ function List:getWidth()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function List:_reload()
|
function List:_reload()
|
||||||
|
Element._reload(self)
|
||||||
self:adjustPositions()
|
self:adjustPositions()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -149,19 +149,18 @@ function Children:with(elementType)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function elementType:_reload()
|
function elementType:_reload()
|
||||||
Element._reload(self)
|
if defaultReload ~= nil and defaultReload ~= Element._reload then
|
||||||
|
defaultReload(self)
|
||||||
|
end
|
||||||
|
|
||||||
-- Reload child windows
|
-- Reload child windows
|
||||||
local win = self:_getWindow()
|
local win = self:_getWindow()
|
||||||
for _,child in self:_iterateChildren() do
|
for _,child in self:_iterateChildren() do
|
||||||
if child:_getWindow() ~= win then
|
if child:_getParent() ~= win then
|
||||||
child:setParent(win)
|
child:setParent(win)
|
||||||
|
child:reload()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if defaultReload ~= nil and defaultReload ~= Element._reload then
|
|
||||||
defaultReload(self)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return elementType
|
return elementType
|
||||||
|
Loading…
x
Reference in New Issue
Block a user