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

Stop checking for resizing

Fixes #1197
This commit is contained in:
Emmanuel Gil Peyrot 2018-01-30 16:28:22 +01:00 committed by linkmauve
parent ae53cd29ef
commit f5d3954568

View File

@ -296,7 +296,6 @@ static void xdgToplevelHandleConfigure(void* data,
uint32_t* state;
GLFWbool maximized = GLFW_FALSE;
GLFWbool fullscreen = GLFW_FALSE;
GLFWbool resizing = GLFW_FALSE;
GLFWbool activated = GLFW_FALSE;
wl_array_for_each(state, states)
@ -310,7 +309,6 @@ static void xdgToplevelHandleConfigure(void* data,
fullscreen = GLFW_TRUE;
break;
case XDG_TOPLEVEL_STATE_RESIZING:
resizing = GLFW_TRUE;
break;
case XDG_TOPLEVEL_STATE_ACTIVATED:
activated = GLFW_TRUE;