Ignore events for invisible elements
This commit is contained in:
parent
17a6d0f9fa
commit
3a7b2cd252
@ -7,6 +7,7 @@ Visibility.INVISIBLE = not Visibility.VISIBLE
|
|||||||
function Visibility:with(elementType)
|
function Visibility:with(elementType)
|
||||||
local propSelf = self
|
local propSelf = self
|
||||||
local defaultDraw = elementType.draw
|
local defaultDraw = elementType.draw
|
||||||
|
local defaultHandleEvent = elementType.handleEvent
|
||||||
|
|
||||||
function elementType:isVisible()
|
function elementType:isVisible()
|
||||||
return propSelf:getState(self)
|
return propSelf:getState(self)
|
||||||
@ -23,6 +24,14 @@ function Visibility:with(elementType)
|
|||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Ignore events when invisible
|
||||||
|
function elementType:handleEvent(evt)
|
||||||
|
if self:isVisible() then
|
||||||
|
return defaultHandleEvent(self, evt)
|
||||||
|
end
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
return elementType
|
return elementType
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user