Propogate setDirty for Progress children

This commit is contained in:
Gabriel Tofvesson 2024-10-11 23:39:25 +02:00
parent 3ab4c97fae
commit 99c9158488

View File

@ -77,6 +77,12 @@ function Progress:_isDirty()
return Element._isDirty(self) or self.active:_isDirty() or self.inactive:_isDirty()
end
function Progress:setDirty(fullInvalidate)
Element.setDirty(self, fullInvalidate)
self.active:setDirty(self, fullInvalidate)
self.inactive:setDirty(self, fullInvalidate)
end
function Progress:_reload()
Element._reload(self)