From 3cc99d192c88e9eeb1c6a725f167650c85767ea7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Hern=C3=A1ndez=20Hern=C3=A1ndez?= Date: Wed, 14 Dec 2022 23:21:58 -0600 Subject: [PATCH] do not try to resize if size wouldn't change --- client.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client.h b/client.h index 064e093..70a60ba 100644 --- a/client.h +++ b/client.h @@ -319,6 +319,9 @@ client_set_size(Client *c, uint32_t width, uint32_t height) return 0; } #endif + if (width == c->surface.xdg->toplevel->current.width + && height ==c->surface.xdg->toplevel->current.height) + return 0; return wlr_xdg_toplevel_set_size(c->surface.xdg->toplevel, width, height); }