dwl

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

commit 14a1e3e2a2ced87d4f373c93c7caae48ccb02f27
parent a94d089c405c677ed4ae7e7c340bf52b49126d9c
Author: Leonardo Hernández Hernández <leohdz172@protonmail.com>
Date:   Mon,  5 Sep 2022 16:30:23 -0500

set c->prev in mapnotify()

Closes: #300

Diffstat:
Mdwl.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/dwl.c b/dwl.c @@ -1423,6 +1423,7 @@ mapnotify(struct wl_listener *listener, void *data) client_get_geometry(c, &c->geom); c->geom.width += 2 * c->bw; c->geom.height += 2 * c->bw; + c->prev = c->geom; /* Insert this client into client lists. */ wl_list_insert(&clients, &c->link);