Fixed event propogation.

This commit is contained in:
Adam Harrison 2021-11-23 21:56:07 -05:00
parent 64f66e5d1e
commit 463605ff41
1 changed files with 1 additions and 3 deletions

View File

@ -900,9 +900,7 @@ function RootView:on_mouse_pressed(button, x, y, clicks)
end
elseif not self.dragged_node then -- avoid sending on_mouse_pressed events when dragging tabs
core.set_active_view(node.active_view)
if not self.on_view_mouse_pressed(button, x, y, clicks) then
return node.active_view:on_mouse_pressed(button, x, y, clicks)
end
return self.on_view_mouse_pressed(button, x, y, clicks) or node.active_view:on_mouse_pressed(button, x, y, clicks)
end
end