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