From f5d39545680ab8445516dce3c805f70ae50de739 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Tue, 30 Jan 2018 16:28:22 +0100 Subject: [PATCH] Stop checking for resizing Fixes #1197 --- src/wl_window.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/wl_window.c b/src/wl_window.c index 82ed2cda..62d38673 100644 --- a/src/wl_window.c +++ b/src/wl_window.c @@ -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;