From 4b8603181c9cb1c638a290f24cefae211d11c5b9 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 965b4106..27e8ef33 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -312,11 +312,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;