Handle events in children before parents
This commit is contained in:
parent
63e1e54462
commit
1a63a7054f
@ -122,10 +122,6 @@ function Children:with(elementType)
|
||||
end
|
||||
|
||||
function elementType:handleEvent(evt)
|
||||
if Element.handleEvent(self, evt) then
|
||||
return true
|
||||
end
|
||||
|
||||
local evtLocalCoords = Event.toElementLocalPosition(evt, self)
|
||||
|
||||
if Event.isClickEvent(evt) then
|
||||
@ -139,15 +135,15 @@ function Children:with(elementType)
|
||||
return true
|
||||
end
|
||||
end
|
||||
return false
|
||||
else
|
||||
for _,child in self:_iterateChildren() do
|
||||
if child:handleEvent(evtLocalCoords) then
|
||||
return true
|
||||
end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
return Element.handleEvent(self, evt)
|
||||
end
|
||||
|
||||
return elementType
|
||||
|
Loading…
x
Reference in New Issue
Block a user