diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-04 07:21:22 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-04 07:21:22 +0000 |
| commit | b5161f803267be7778dd893de55d2f71c808d719 (patch) | |
| tree | 7d6fa882b9d3e74dde7d7a2dec1a34e1f8874e6f /openbox/client.c | |
| parent | a823e4786e8c0b5ec1940f7a6daaf4572f7d452a (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.c | 4 |
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 |
