From 99c9158488cf558a565c0655adb06deff42f899e Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 11 Oct 2024 23:39:25 +0200 Subject: [PATCH] Propogate setDirty for Progress children --- gfx/progress.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gfx/progress.lua b/gfx/progress.lua index 00969df..06fc2cb 100644 --- a/gfx/progress.lua +++ b/gfx/progress.lua @@ -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)