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

Made dialog borders not click-through.

parent 4e67e414
No related branches found
No related tags found
No related merge requests found
......@@ -339,6 +339,7 @@ function _M:generate()
self.mouse:registerZone(0, 0, gamew, gameh, function(button, x, y, xrel, yrel, bx, by, event) self:mouseEvent(button, x, y, xrel, yrel, bx - self.display_x, by - self.display_y, event) end)
else
self.mouse:registerZone(0, 0, gamew, gameh, function(button, x, y, xrel, yrel, bx, by, event) if button == "left" and event == "button" then self.key:triggerVirtual("EXIT") end end)
self.mouse:registerZone(self.display_x + self.frame.ox1, self.display_y + self.frame.ox2, self.frame.w, self.frame.h, function(...) self:no_focus() end)
self.mouse:registerZone(self.display_x, self.display_y, self.w, self.h, function(...) self:mouseEvent(...) end)
end
self.key.receiveKey = function(_, ...) self:keyEvent(...) end
......
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