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