Merge branch 'always-commit' of https://github.com/Nefsen402/kitty

This commit is contained in:
Kovid Goyal 2022-03-03 07:16:50 +05:30
commit abdcc64053
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

3
glfw/wl_window.c vendored
View File

@ -519,10 +519,11 @@ static void xdgSurfaceHandleConfigure(void* data,
debug("final window content size: %dx%d\n", window->wl.current.width, window->wl.current.height);
_glfwInputWindowFocus(window, window->wl.current.toplevel_states & TOPLEVEL_STATE_ACTIVATED);
ensure_csd_resources(window);
wl_surface_commit(window->wl.surface);
inform_compositor_of_window_geometry(window, "configure");
if (live_resize_done) _glfwInputLiveResize(window, false);
}
wl_surface_commit(window->wl.surface);
}
static const struct xdg_surface_listener xdgSurfaceListener = {