Prevent GLFW fullscreen from always being on top
This commit is contained in:
parent
43366d1c6a
commit
eb10d4e9d0
2
src/external/glfw/src/win32_window.c
vendored
2
src/external/glfw/src/win32_window.c
vendored
|
|
@ -1901,7 +1901,7 @@ void _glfwSetWindowMonitorWin32(_GLFWwindow* window,
|
|||
acquireMonitorWin32(window);
|
||||
|
||||
GetMonitorInfoW(window->monitor->win32.handle, &mi);
|
||||
SetWindowPos(window->win32.handle, HWND_TOPMOST,
|
||||
SetWindowPos(window->win32.handle, HWND_TOP,
|
||||
mi.rcMonitor.left,
|
||||
mi.rcMonitor.top,
|
||||
mi.rcMonitor.right - mi.rcMonitor.left,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user