Fixed glfwSetWindowSize stealing focus.

This commit is contained in:
Camilla Berglund
2013-12-28 20:56:57 +01:00
parent 0e8dace18c
commit d937b74b8f
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -1034,7 +1034,7 @@ void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height)
SetWindowPos(window->win32.handle, HWND_TOP,
0, 0, fullWidth, fullHeight,
SWP_NOOWNERZORDER | SWP_NOMOVE | SWP_NOZORDER);
SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOMOVE | SWP_NOZORDER);
}
}