mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
parent
18b6ba0af4
commit
0ff22e4a49
@ -81,6 +81,8 @@ does not find Doxygen, the documentation will not be generated.
|
|||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
- Bugfix: The range checks for `glfwSetCursorPos` used the wrong minimum
|
- Bugfix: The range checks for `glfwSetCursorPos` used the wrong minimum
|
||||||
|
- [Win32] Bugfix: The first shown window ignored the `GLFW_MAXIMIZED` hint
|
||||||
|
when the process was provided a `STARTUPINFO`
|
||||||
|
|
||||||
|
|
||||||
## Contact
|
## Contact
|
||||||
|
@ -319,6 +319,10 @@ static HWND createHelperWindow(void)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// HACK: The first call to ShowWindow is ignored if the parent process
|
||||||
|
// passed along a STARTUPINFO, so clear that flag with a no-op call
|
||||||
|
ShowWindow(window, SW_HIDE);
|
||||||
|
|
||||||
// Register for HID device notifications
|
// Register for HID device notifications
|
||||||
{
|
{
|
||||||
DEV_BROADCAST_DEVICEINTERFACE_W dbi;
|
DEV_BROADCAST_DEVICEINTERFACE_W dbi;
|
||||||
|
Loading…
Reference in New Issue
Block a user