dwl

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

commit 30c24a53ad2aaa842bc3b028ba0b98e3362dad7c
parent 017bb7d7521f68d37bfe656c10f45edbcc92dd61
Author: Palanix <palanixyt@gmail.com>
Date:   Sat, 24 Sep 2022 13:37:05 +0200

remove unneeded changes in commitnotify()

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

diff --git a/dwl.c b/dwl.c @@ -729,14 +729,9 @@ commitnotify(struct wl_listener *listener, void *data) struct wlr_box box = {0}; client_get_geometry(c, &box); - if (c->mon && !wlr_box_empty(&box) && (box.width != c->geom.width - 2 * c->bw - || box.height != c->geom.height - 2 * c->bw)) - arrange(c->mon); /* mark a pending resize as completed */ - if (c->resize && (c->resize <= c->surface.xdg->current.configure_serial - || (c->surface.xdg->current.geometry.width == c->surface.xdg->pending.geometry.width - && c->surface.xdg->current.geometry.height == c->surface.xdg->pending.geometry.height))) + if (c->resize && (c->resize <= c->surface.xdg->current.configure_serial)) c->resize = 0; }