dwl

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

commit 2c9423d1b7a387d63b07b96ecbda725f1e16002b
parent d3efb0b29bda112e61ce0cf81bb596aca97e0ee6
Author: Leonardo Hernandez Hernandez <leohdz172@outlook.com>
Date:   Sun,  3 Oct 2021 22:08:00 -0500

`wlr_xdg_surface.configure_serial` has been moved into `wlr_xdg_surface_state`

as seen in swaywm/wlroots@0e34208

Diffstat:
Mdwl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dwl.c b/dwl.c @@ -779,7 +779,7 @@ commitnotify(struct wl_listener *listener, void *data) Client *c = wl_container_of(listener, c, commit); /* mark a pending resize as completed */ - if (c->resize && c->resize <= c->surface.xdg->configure_serial) + if (c->resize && c->resize <= c->surface.xdg->current.configure_serial) c->resize = 0; }