diff --git a/gfx/prop/visibility.lua b/gfx/prop/visibility.lua index bc543a4..7e0ab45 100644 --- a/gfx/prop/visibility.lua +++ b/gfx/prop/visibility.lua @@ -7,6 +7,7 @@ Visibility.INVISIBLE = not Visibility.VISIBLE function Visibility:with(elementType) local propSelf = self local defaultDraw = elementType.draw + local defaultHandleEvent = elementType.handleEvent function elementType:isVisible() return propSelf:getState(self) @@ -23,6 +24,14 @@ function Visibility:with(elementType) return false end + -- Ignore events when invisible + function elementType:handleEvent(evt) + if self:isVisible() then + return defaultHandleEvent(self, evt) + end + return false + end + return elementType end