dwl

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

commit 52dbc97ed69f368e63fae57b028072f01d07ee7d
parent 852fe819c4a0e516135d1bfdd91de3cf60cb495d
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; }