From: John Lindgren Date: Tue, 2 Dec 2025 02:53:00 +0000 (-0500) Subject: xdg: don't send xdg_wm_base::ping on creation of new surface X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=ba60f4d5d00179385da3ed1ece01e93623cdbf41;p=proto%2Flabwc.git xdg: don't send xdg_wm_base::ping on creation of new surface Although this wasn't causing any known issues, here too we weren't handling the ping_timeout event, so it seems useless. --- diff --git a/src/xdg.c b/src/xdg.c index b7bae379..668dfe45 100644 --- a/src/xdg.c +++ b/src/xdg.c @@ -999,8 +999,6 @@ handle_new_xdg_toplevel(struct wl_listener *listener, void *data) assert(xdg_surface->role == WLR_XDG_SURFACE_ROLE_TOPLEVEL); - wlr_xdg_surface_ping(xdg_surface); - struct xdg_toplevel_view *xdg_toplevel_view = znew(*xdg_toplevel_view); struct view *view = &xdg_toplevel_view->base;