aboutsummaryrefslogtreecommitdiff
path: root/dwl.c
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@protonmail.com>2022-12-30 14:14:06 -0600
committerLeonardo Hernández Hernández <leohdz172@protonmail.com>2022-12-30 14:14:06 -0600
commit5347ed663de57f624abe887dc761949eb7169986 (patch)
tree98e14fba802223bcc672ae38d3d24690a124dfcc /dwl.c
parent05f4e23c43aa0d6e8fb8673a3b0d71653dc6dbbd (diff)
only mark pending resizes as completed checking the configure serial
Diffstat (limited to 'dwl.c')
-rw-r--r--dwl.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/dwl.c b/dwl.c
index 43603db..9b6be9f 100644
--- a/dwl.c
+++ b/dwl.c
@@ -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;
}