Always call draw for children
This commit is contained in:
parent
059f9f2938
commit
8483ffeaaf
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user