From 3a7b2cd2527f1e70f3aaa95fbff13a770d466dc8 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 23:28:47 +0200 Subject: [PATCH] Ignore events for invisible elements --- gfx/prop/visibility.lua | 9 +++++++++ 1 file changed, 9 insertions(+) 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