summaryrefslogtreecommitdiff
path: root/openbox/client.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-05-04 07:21:22 +0000
committerDana Jansens <danakj@orodu.net>2007-05-04 07:21:22 +0000
commitb5161f803267be7778dd893de55d2f71c808d719 (patch)
tree7d6fa882b9d3e74dde7d7a2dec1a34e1f8874e6f /openbox/client.c
parenta823e4786e8c0b5ec1940f7a6daaf4572f7d452a (diff)
revert r6029, as it didnt fix anything.
however this patch does fix the aforementioned problem. actions need some reworking... yeah... later...
Diffstat (limited to 'openbox/client.c')
-rw-r--r--openbox/client.c4
1 files changed, 3 insertions, 1 deletions
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