From b86fcf6504e7b6aafcace2e099d2de822c25fbf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Hern=C3=A1ndez=20Hern=C3=A1ndez?= Date: Sun, 10 Apr 2022 21:38:48 -0500 Subject: [PATCH] add missing return in client_is_floating_type() This causes all Xwayland clients to be treated as floating --- client.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client.h b/client.h index 41c9b9a..2ea0d22 100644 --- a/client.h +++ b/client.h @@ -113,6 +113,8 @@ client_is_float_type(Client *c) && (size_hints->max_width == size_hints->min_width || size_hints->max_height == size_hints->min_height)) return 1; + + return 0; } #endif