From 3943bbcc19369fd0120871fdca575af34d95dbc2 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sun, 13 Oct 2024 16:53:58 +0200 Subject: [PATCH] Fix Children reload order --- gfx/prop/children.lua | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gfx/prop/children.lua b/gfx/prop/children.lua index 2d2f35a..7c6440d 100644 --- a/gfx/prop/children.lua +++ b/gfx/prop/children.lua @@ -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