ntf transparency

This commit is contained in:
kepler155c@gmail.com
2019-07-10 19:02:46 -06:00
parent 8f17657263
commit 0e1b712adc
4 changed files with 15 additions and 9 deletions

View File

@@ -912,10 +912,12 @@ function UI.Window:emit(event)
end
end
function UI.Window:getProperty(property)
return self[property] or self.parent and self.parent:getProperty(property)
end
function UI.Window:find(uid)
if self.children then
return Util.find(self.children, 'uid', uid)
end
return self.children and Util.find(self.children, 'uid', uid)
end
function UI.Window:eventHandler()