From b5161f803267be7778dd893de55d2f71c808d719 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 4 May 2007 07:21:22 +0000 Subject: revert r6029, as it didnt fix anything. however this patch does fix the aforementioned problem. actions need some reworking... yeah... later... --- openbox/client.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'openbox/client.c') diff --git a/openbox/client.c b/openbox/client.c index 3e43891e..e9434217 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -262,7 +262,9 @@ void client_manage(Window window) /* choose the events we want to receive on the CLIENT window */ attrib_set.event_mask = CLIENT_EVENTMASK; - XChangeWindowAttributes(ob_display, window, CWEventMask, &attrib_set); + attrib_set.do_not_propagate_mask = CLIENT_NOPROPAGATEMASK; + XChangeWindowAttributes(ob_display, window, + CWEventMask|CWDontPropagate, &attrib_set); /* create the ObClient struct, and populate it from the hints on the -- cgit v1.2.3