From aa91c10309d295ec10127cb54f013711235f8e1a Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Sun, 17 Jun 1990 11:04:48 +0000
Subject: [PATCH] Fixed SET-WM-PROPERTIES to set the WM-HINTS-WINDOW-GROUP to
 the WINDOW-GROUP, rather than setting the INPUT.

---
 clx/manager.lisp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/clx/manager.lisp b/clx/manager.lisp
index 96832df3b..ca9571b0a 100644
--- a/clx/manager.lisp
+++ b/clx/manager.lisp
@@ -596,7 +596,8 @@
 	(when icon-x (setf (wm-hints-icon-x wm-hints) icon-x))
 	(when icon-y (setf (wm-hints-icon-y wm-hints) icon-y))
 	(when icon-mask (setf (wm-hints-icon-mask wm-hints) icon-mask))
-	(when window-group (setf (wm-hints-input wm-hints) window-group))
+	(when window-group
+	  (setf (wm-hints-window-group wm-hints) window-group))
 	(setf (wm-hints window) wm-hints))
       (when hints (setf (wm-hints window) hints)))
   ;; WM-NORMAL-HINTS
-- 
GitLab