]> Dogcows Code - chaz/openbox/blobdiff - openbox/client.c
revert r6029, as it didnt fix anything.
[chaz/openbox] / openbox / client.c
index 3e43891e21bfc6ab5050a7af68a873204e349e76..e943421791aafa266fbb1822370f00e34ff694a6 100644 (file)
@@ -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
This page took 0.021731 seconds and 4 git commands to generate.