Simplify click detection

This commit is contained in:
Gabriel Tofvesson 2024-10-08 16:13:43 +02:00
parent db1e3916bc
commit 6e95fe9007
3 changed files with 8 additions and 9 deletions

View File

@ -186,7 +186,7 @@ function Element:redraw()
end
function Element:handleEvent(evt)
if Event.isClickEvent(evt) and self.onClick ~= nil then
if Event.isClickEvent(evt) and self.onClick ~= nil and Event.containsClick(self, evt, 0, 0) then
local x, y, source = Event.getClickParams(evt)
return not not self.onClick(self, x, y, source)
end

View File

@ -135,8 +135,8 @@ function List:handleEvent(evt)
local wOffset = 0
local hOffset = 0
for _,child in ipairs(self.children) do
if Event.containsClick(child, evt, -wOffset, -hOffset) then
return child:handleEvent({Event.repositionEvent(evt, -wOffset, -hOffset)})
if child:handleEvent({Event.repositionEvent(evt, -wOffset, -hOffset)}) then
return true
end
if self:isVertical() then
@ -147,11 +147,12 @@ function List:handleEvent(evt)
end
return false
else
local handled = false
for _,child in ipairs(self.children) do
handled = child:handleEvent(evt) or handled
if child:handleEvent(evt) then
return true
end
end
return handled
return false
end
end

View File

@ -86,9 +86,7 @@ function Padding:handleEvent(evt)
end
if Event.isClickEvent(evt) then
if Event.containsClick(self.element, evt, -self:getPaddingLeft(), -self:getPaddingTop()) then
self.element:handleEvent({Event.repositionEvent(evt, -self:getPaddingLeft(), -self:getPaddingTop())})
end
return self.element:handleEvent({Event.repositionEvent(evt, -self:getPaddingLeft(), -self:getPaddingTop())})
else
return self.element:handleEvent(evt)
end