Nil guard for window visibility
This commit is contained in:
parent
9ba0ada978
commit
0d8c7ab16b
@ -126,9 +126,12 @@ function Element:_setWindow(window)
|
||||
end
|
||||
|
||||
function Element:setVisible(visible)
|
||||
self:setDirty()
|
||||
local win = self:_getWindow()
|
||||
self.visible = visible
|
||||
self:_getWindow().setVisible(visible)
|
||||
if win ~= nil then
|
||||
self:setDirty()
|
||||
self:_getWindow().setVisible(visible)
|
||||
end
|
||||
end
|
||||
|
||||
function Element:_isDirty()
|
||||
|
Loading…
x
Reference in New Issue
Block a user