Revert "remove unneeded changes in commitnotify()"

This reverts commit 30c24a53ad.

Bug: https://github.com/djpohly/dwl/issues/349
This commit is contained in:
Leonardo Hernández Hernández 2022-12-06 13:56:46 -06:00
parent 4a32293548
commit d42a977b5b
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
1 changed files with 6 additions and 1 deletions

7
dwl.c
View File

@ -730,9 +730,14 @@ 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))
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)))
c->resize = 0;
}