summary refs log tree commit diff
diff options
context:
space:
mode:
authorokan <okan>2020-02-28 13:38:35 +0000
committerokan <okan>2020-02-28 13:38:35 +0000
commit3d1a8028c2cf9921ba66e7c0e8a76523a4ecde1e (patch)
tree800e7a531b6f73c60a68a3bed773caeb7faa16f9
parent96275a835d34b0e17da0c4d3bad294620f82d4d5 (diff)
downloadcwm-3d1a8028c2cf9921ba66e7c0e8a76523a4ecde1e.tar.gz
cwm-3d1a8028c2cf9921ba66e7c0e8a76523a4ecde1e.tar.xz
cwm-3d1a8028c2cf9921ba66e7c0e8a76523a4ecde1e.zip
Remove ColormaskChange from event-mask since there's no event handler.
-rw-r--r--client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/client.c b/client.c
index a2104ea..653c0d4 100644
--- a/client.c
+++ b/client.c
@@ -114,8 +114,8 @@ client_init(Window win, struct screen_ctx *sc, int active)
 			active = 1;
 	}
 
-	XSelectInput(X_Dpy, cc->win, ColormapChangeMask | EnterWindowMask |
-	    PropertyChangeMask | KeyReleaseMask);
+	XSelectInput(X_Dpy, cc->win,
+	    EnterWindowMask | PropertyChangeMask | KeyReleaseMask);
 
 	XAddToSaveSet(X_Dpy, cc->win);