Updated color properties

Small container fix
This commit is contained in:
Robert Jelic
2025-03-02 22:03:51 +01:00
parent 1e6847fc3a
commit 0af0a62528
14 changed files with 123 additions and 53 deletions

View File

@@ -278,6 +278,8 @@ function Container:unregisterChildEvent(child, eventName)
self.parent:unregisterChildEvent(self, eventName)
end
end
self.set("childrenEventsSorted", false)
self:updateRender()
break
end
end
@@ -298,6 +300,8 @@ function Container:removeChild(child)
end
end
self:removeChildrenEvents(child)
self:updateRender()
self.set("childrenSorted", false)
return self
end