dwl

My patch set and modifications to dwl
git clone git://git.ethandl.dev/dwl
Log | Files | Refs | README | LICENSE

commit 668022bc906fc7ba4d2092d260fbd10304fec29f
parent c222468887b25fa21c34c02ae605d002de218d1c
Author: Leonardo Hernández Hernández <leohdz172@proton.me>
Date:   Fri,  5 Jan 2024 11:12:34 -0600

don't send configure events to uninitialized xdg-toplevels

Diffstat:
Mdwl.c | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dwl.c b/dwl.c @@ -1578,8 +1578,9 @@ maximizenotify(struct wl_listener *listener, void *data) * protocol version * wlr_xdg_surface_schedule_configure() is used to send an empty reply. */ Client *c = wl_container_of(listener, c, maximize); - if (wl_resource_get_version(c->surface.xdg->toplevel->resource) - < XDG_TOPLEVEL_WM_CAPABILITIES_SINCE_VERSION) + if (c->surface.xdg->initialized + && wl_resource_get_version(c->surface.xdg->toplevel->resource) + < XDG_TOPLEVEL_WM_CAPABILITIES_SINCE_VERSION) wlr_xdg_surface_schedule_configure(c->surface.xdg); }