only mark pending resizes as completed checking the configure serial

This commit is contained in:
Leonardo Hernández Hernández 2022-12-30 14:14:06 -06:00
parent 05f4e23c43
commit 5347ed663d
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
1 changed files with 1 additions and 3 deletions

4
dwl.c
View File

@ -766,9 +766,7 @@ commitnotify(struct wl_listener *listener, void *data)
c->isfloating ? resize(c, c->geom, 1) : 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;
}