From 96ad19143d8d20553bfb86d440faaaf91eaff955 Mon Sep 17 00:00:00 2001 From: Christian Rauch Date: Sun, 12 Apr 2020 14:21:03 +0100 Subject: [PATCH] wl: fix resize glitches --- src/wl_window.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wl_window.c b/src/wl_window.c index 939f9c196..3899c858c 100644 --- a/src/wl_window.c +++ b/src/wl_window.c @@ -292,7 +292,6 @@ static void setOpaqueRegion(_GLFWwindow* window) wl_region_add(region, 0, 0, window->wl.width, window->wl.height); wl_surface_set_opaque_region(window->wl.surface, region); - wl_surface_commit(window->wl.surface); wl_region_destroy(region); }