Skip to content
Snippets Groups Projects
Commit 5f9caaa9 authored by Alex Ksandra's avatar Alex Ksandra
Browse files

allow mouse events to return false to fall through

parent 61540c91
No related branches found
No related tags found
No related merge requests found
......@@ -55,8 +55,8 @@ function _M:receiveMouse(button, x, y, isup, force_name, extra)
for i = 1, #self.areas do
local m = self.areas[i]
if (not m.mode or m.mode.button) and (x >= m.x1 and x < m.x2 and y >= m.y1 and y < m.y2) and (not force_name or force_name == m.name) then
m.fct(button, x, y, nil, nil, (x-m.x1) / m.scale, (y-m.y1) / m.scale, isup and "button" or "button-down", extra)
break
local r = m.fct(button, x, y, nil, nil, (x-m.x1) / m.scale, (y-m.y1) / m.scale, isup and "button" or "button-down", extra)
if r ~= false then break end
end
end
end
......@@ -75,9 +75,11 @@ function _M:receiveMouseMotion(button, x, y, xrel, yrel, force_name, extra)
for i = 1, #self.areas do
local m = self.areas[i]
if (not m.mode or m.mode.move) and (x >= m.x1 and x < m.x2 and y >= m.y1 and y < m.y2) and (not force_name or force_name == m.name) then
m.fct(button, x, y, xrel, yrel, (x-m.x1) / m.scale, (y-m.y1) / m.scale, "motion", extra)
cur_m = m
break
local r = m.fct(button, x, y, xrel, yrel, (x-m.x1) / m.scale, (y-m.y1) / m.scale, "motion", extra)
if r ~= false then
cur_m = m
break
end
end
end
if self.last_m and self.last_m.allow_out_events and self.last_m ~= cur_m then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment