mirror of
https://github.com/glfw/glfw.git
synced 2024-11-12 17:51:48 +00:00
Cocoa: Accept focusing mouse click as input
This makes the behavior on macOS consistent with other platforms. Fixes #1209. Closes #1386.
This commit is contained in:
parent
17a15a20f2
commit
cc621765e5
@ -492,6 +492,11 @@ static const NSRange kEmptyRange = { NSNotFound, 0 };
|
|||||||
updateCursorImage(window);
|
updateCursorImage(window);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (BOOL)acceptsFirstMouse:(NSEvent *)event
|
||||||
|
{
|
||||||
|
return YES;
|
||||||
|
}
|
||||||
|
|
||||||
- (void)mouseDown:(NSEvent *)event
|
- (void)mouseDown:(NSEvent *)event
|
||||||
{
|
{
|
||||||
_glfwInputMouseClick(window,
|
_glfwInputMouseClick(window,
|
||||||
|
Loading…
Reference in New Issue
Block a user