diff --git a/src/plugins/theme.lua b/src/plugins/theme.lua index 05d7386..6753fc5 100644 --- a/src/plugins/theme.lua +++ b/src/plugins/theme.lua @@ -178,6 +178,14 @@ function BaseElement:applyTheme() end end end + if(self:isType("Container"))then + local children = self.get("children") + for _, child in ipairs(children) do + if(child and child.applyTheme)then + child:applyTheme() + end + end + end return self end