From 208490f4e1b3fe63aaa4be0b5dd4cd739c8db62e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 8 Apr 2024 11:18:32 +0530 Subject: [PATCH] ... --- glfw/wl_client_side_decorations.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/wl_client_side_decorations.c b/glfw/wl_client_side_decorations.c index 2abfef992..c36a03429 100644 --- a/glfw/wl_client_side_decorations.c +++ b/glfw/wl_client_side_decorations.c @@ -479,7 +479,7 @@ ensure_csd_resources(_GLFWwindow *window) { void csd_set_visible(_GLFWwindow *window, bool visible) { // When setting to visible will only take effect if window currently has - // CSD and will also ensure CSD is of correct size for current window size. + // CSD and will also ensure CSD is of correct size and type for current window. // When hiding CSD simply destroys all CSD surfaces. if (visible) ensure_csd_resources(window); else free_csd_surfaces(window); }