Always call draw for children

This commit is contained in:
Gabriel Tofvesson 2024-10-12 05:30:20 +02:00
parent 059f9f2938
commit 8483ffeaaf

View File

@ -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