From 0e1c5a4fbbd44a6c69a050763ef4c6719fbbbdd3 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 8 Oct 2024 16:38:10 +0200 Subject: [PATCH] Optimize List click handler --- gfx/list.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gfx/list.lua b/gfx/list.lua index 7aa5a3b..7e22ff2 100644 --- a/gfx/list.lua +++ b/gfx/list.lua @@ -132,6 +132,11 @@ function List:handleEvent(evt) end if Event.isClickEvent(evt) then + -- If click is not inside list bounds, we can safely ignore it + if not Event.containsClick(self, evt, 0, 0) then + return false + end + local wOffset = 0 local hOffset = 0 for _,child in ipairs(self.children) do