From 242ffd7a7521a74fc9edf68bcc7e6a3cd75ec860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Desgualdo=20Pereira?= Date: Mon, 21 Sep 2026 14:35:09 -0300 Subject: [PATCH] client: do not drop configure events based on current committed size --- client.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client.h b/client.h index eb1bb47..a6fe207 100644 --- a/client.h +++ b/client.h @@ -376,9 +376,7 @@ client_set_size(Client *c, uint32_t width, uint32_t height) return; } #endif - if ((int32_t)width != c->surface.xdg->toplevel->current.width - || (int32_t)height != c->surface.xdg->toplevel->current.height) - wlr_xdg_toplevel_set_size(c->surface.xdg->toplevel, (int32_t)width, (int32_t)height); + wlr_xdg_toplevel_set_size(c->surface.xdg->toplevel, (int32_t)width, (int32_t)height); } static inline void