mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
Win32: Fix GLFW_FOCUSED hint being ignored
The window was activated by _glfwPlatformShowWindow, causing the GLFW_FOCUSED window hint to be ignored when set to false. Fixes #1179. Closes #1180.
This commit is contained in:
parent
ee9dffcd66
commit
20b12204af
@ -215,6 +215,8 @@ information on what to include when reporting a bug.
|
|||||||
- [Win32] Bugfix: Undecorated windows did not maximize to workarea (#899)
|
- [Win32] Bugfix: Undecorated windows did not maximize to workarea (#899)
|
||||||
- [Win32] Bugfix: Window was resized twice when entering full screen (#1085)
|
- [Win32] Bugfix: Window was resized twice when entering full screen (#1085)
|
||||||
- [Win32] Bugfix: The HID device notification was not unregistered (#1170)
|
- [Win32] Bugfix: The HID device notification was not unregistered (#1170)
|
||||||
|
- [Win32] Bugfix: `glfwCreateWindow` activated window even with `GLFW_FOCUSED`
|
||||||
|
hint set to false (#1179)
|
||||||
- [X11] Moved to XI2 `XI_RawMotion` for disable cursor mode motion input (#125)
|
- [X11] Moved to XI2 `XI_RawMotion` for disable cursor mode motion input (#125)
|
||||||
- [X11] Replaced `_GLFW_HAS_XF86VM` compile-time option with dynamic loading
|
- [X11] Replaced `_GLFW_HAS_XF86VM` compile-time option with dynamic loading
|
||||||
- [X11] Bugfix: `glfwGetVideoMode` would segfault on Cygwin/X
|
- [X11] Bugfix: `glfwGetVideoMode` would segfault on Cygwin/X
|
||||||
|
@ -1459,7 +1459,7 @@ void _glfwPlatformMaximizeWindow(_GLFWwindow* window)
|
|||||||
|
|
||||||
void _glfwPlatformShowWindow(_GLFWwindow* window)
|
void _glfwPlatformShowWindow(_GLFWwindow* window)
|
||||||
{
|
{
|
||||||
ShowWindow(window->win32.handle, SW_SHOW);
|
ShowWindow(window->win32.handle, SW_SHOWNA);
|
||||||
}
|
}
|
||||||
|
|
||||||
void _glfwPlatformHideWindow(_GLFWwindow* window)
|
void _glfwPlatformHideWindow(_GLFWwindow* window)
|
||||||
|
Loading…
Reference in New Issue
Block a user