Events local to parent

This commit is contained in:
Gabriel Tofvesson 2024-10-08 17:36:58 +02:00
parent a13b2fb208
commit 027edc1a27
2 changed files with 7 additions and 4 deletions

View File

@ -131,6 +131,8 @@ function List:handleEvent(evt)
return true
end
local evtLocalCoords = Event.toElementLocalPosition(evt, self)
if Event.isClickEvent(evt) then
-- If click is not inside list bounds, we can safely ignore it
if not Event.containsClick(self, evt) then
@ -138,14 +140,14 @@ function List:handleEvent(evt)
end
for _,child in ipairs(self.children) do
if child:handleEvent(Event.toElementLocalPosition(evt, child)) then
if child:handleEvent(evtLocalCoords) then
return true
end
end
return false
else
for _,child in ipairs(self.children) do
if child:handleEvent(Event.toElementLocalPosition(evt, child)) then
if child:handleEvent(evtLocalCoords) then
return true
end
end

View File

@ -85,10 +85,11 @@ function Padding:handleEvent(evt)
return true
end
local evtLocalCoords = Event.toElementLocalPosition(evt, self)
if Event.isClickEvent(evt) then
return Event.containsClick(self, evt) and self.element:handleEvent(Event.toElementLocalPosition(evt, self.element))
return Event.containsClick(self, evt) and self.element:handleEvent(evtLocalCoords)
else
return self.element:handleEvent(evt)
return self.element:handleEvent(evtLocalCoords)
end
end