Nil guard for window visibility

This commit is contained in:
Gabriel Tofvesson 2024-10-13 16:07:12 +02:00
parent 9ba0ada978
commit 0d8c7ab16b

View File

@ -126,9 +126,12 @@ function Element:_setWindow(window)
end end
function Element:setVisible(visible) function Element:setVisible(visible)
self:setDirty() local win = self:_getWindow()
self.visible = visible self.visible = visible
self:_getWindow().setVisible(visible) if win ~= nil then
self:setDirty()
self:_getWindow().setVisible(visible)
end
end end
function Element:_isDirty() function Element:_isDirty()