From ac0823ee68e6ae6471178c245ea6a239e2e5aa4b Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Wed, 22 Apr 2026 10:15:55 +0800 Subject: [PATCH] opt: always notify x11 client position change --- src/client/client.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/client/client.h b/src/client/client.h index a10fee00..d1a43752 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -314,11 +314,6 @@ static inline uint32_t client_set_size(Client *c, uint32_t width, int32_t width = c->geom.width - 2 * c->bw; int32_t height = c->geom.height - 2 * c->bw; - if (c->mon && c->mon->isoverview && size_hints && - c->geom.width - 2 * (int32_t)c->bw < size_hints->min_width && - c->geom.height - 2 * (int32_t)c->bw < size_hints->min_height) - return 0; - if (size_hints && c->geom.width - 2 * (int32_t)c->bw < size_hints->min_width) width = size_hints->min_width;