Events local to parent
This commit is contained in:
parent
a13b2fb208
commit
027edc1a27
@ -131,6 +131,8 @@ function List:handleEvent(evt)
|
|||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local evtLocalCoords = Event.toElementLocalPosition(evt, self)
|
||||||
|
|
||||||
if Event.isClickEvent(evt) then
|
if Event.isClickEvent(evt) then
|
||||||
-- If click is not inside list bounds, we can safely ignore it
|
-- If click is not inside list bounds, we can safely ignore it
|
||||||
if not Event.containsClick(self, evt) then
|
if not Event.containsClick(self, evt) then
|
||||||
@ -138,14 +140,14 @@ function List:handleEvent(evt)
|
|||||||
end
|
end
|
||||||
|
|
||||||
for _,child in ipairs(self.children) do
|
for _,child in ipairs(self.children) do
|
||||||
if child:handleEvent(Event.toElementLocalPosition(evt, child)) then
|
if child:handleEvent(evtLocalCoords) then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return false
|
return false
|
||||||
else
|
else
|
||||||
for _,child in ipairs(self.children) do
|
for _,child in ipairs(self.children) do
|
||||||
if child:handleEvent(Event.toElementLocalPosition(evt, child)) then
|
if child:handleEvent(evtLocalCoords) then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -85,10 +85,11 @@ function Padding:handleEvent(evt)
|
|||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local evtLocalCoords = Event.toElementLocalPosition(evt, self)
|
||||||
if Event.isClickEvent(evt) then
|
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
|
else
|
||||||
return self.element:handleEvent(evt)
|
return self.element:handleEvent(evtLocalCoords)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user