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() function elementType:draw()
local dirty = Element.draw(self) local dirty = Element.draw(self)
if dirty then if Element._isDirty(self) then
self:_getWindow().clear() self:_getWindow().clear()
for _,child in self:_iterateChildren() do end
child:draw() for _,child in self:_iterateChildren() do
end dirty = child:draw() or dirty
end end
return dirty return dirty
end end