From 8483ffeaaffe6dc85021eccfb7cd1275c57b0934 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 05:30:20 +0200 Subject: [PATCH] Always call draw for children --- gfx/prop/children.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gfx/prop/children.lua b/gfx/prop/children.lua index 9290ac7..91f837d 100644 --- a/gfx/prop/children.lua +++ b/gfx/prop/children.lua @@ -91,11 +91,11 @@ function Children:with(elementType) function elementType:draw() local dirty = Element.draw(self) - if dirty then + if Element._isDirty(self) then self:_getWindow().clear() - for _,child in self:_iterateChildren() do - child:draw() - end + end + for _,child in self:_iterateChildren() do + dirty = child:draw() or dirty end return dirty end