Fix Children reload order

This commit is contained in:
Gabriel Tofvesson 2024-10-13 16:53:58 +02:00
parent 86e251152c
commit 3943bbcc19

View File

@ -152,14 +152,11 @@ function Children:with(elementType)
if defaultReload ~= nil and defaultReload ~= Element._reload then
defaultReload(self)
end
-- Reload child windows
local win = self:_getWindow()
for _,child in self:_iterateChildren() do
if child:_getParent() ~= win then
child:setParent(win)
child:reload()
end
child:setParent(win)
end
end