mirror of
https://github.com/glfw/glfw.git
synced 2025-04-05 21:45:08 +00:00
parent
1fca33b3c1
commit
cad22cb2f6
1 changed files with 3 additions and 1 deletions
|
@ -857,8 +857,10 @@ static GLFWbool createNativeWindow(_GLFWwindow* window,
|
|||
[window->ns.object setDelegate:window->ns.delegate];
|
||||
[window->ns.object setAcceptsMouseMovedEvents:YES];
|
||||
[window->ns.object setRestorable:NO];
|
||||
|
||||
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 101200
|
||||
[window->ns.object setTabbingMode:NSWindowTabbingModeDisallowed];
|
||||
if ([window->ns.object respondsToSelector:@selector(setTabbingMode:)])
|
||||
[window->ns.object setTabbingMode:NSWindowTabbingModeDisallowed];
|
||||
#endif
|
||||
|
||||
_glfwPlatformGetWindowSize(window, &window->ns.width, &window->ns.height);
|
||||
|
|
Loading…
Add table
Reference in a new issue