1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-07 22:57:25 -04:00

Prevent a crash when giving focus to a non-GLFWwindow surface

This commit is contained in:
Emmanuel Gil Peyrot 2017-12-19 19:06:40 +01:00 committed by linkmauve
parent 552e40a4be
commit 5b65b9b860

View File

@ -54,6 +54,8 @@ static void pointerHandleEnter(void* data,
return;
_GLFWwindow* window = wl_surface_get_user_data(surface);
if (!window)
return;
_glfw.wl.pointerSerial = serial;
_glfw.wl.pointerFocus = window;
@ -280,6 +282,8 @@ static void keyboardHandleEnter(void* data,
return;
_GLFWwindow* window = wl_surface_get_user_data(surface);
if (!window)
return;
_glfw.wl.keyboardFocus = window;
_glfwInputWindowFocus(window, GLFW_TRUE);