]> Dogcows Code - chaz/openbox/commitdiff
don't use XPutBackEvent and mess up timestamp order in the event queue
authorDana Jansens <danakj@orodu.net>
Fri, 23 Apr 2010 15:50:24 +0000 (11:50 -0400)
committerDana Jansens <danakj@orodu.net>
Fri, 23 Apr 2010 15:50:24 +0000 (11:50 -0400)
openbox/window.c

index 19b362edd14e26fda80d5a1ee6fc5c2d1e680e65..c8cb348c7cdc36950b46bed21c9675bb7907ad1b 100644 (file)
@@ -146,6 +146,13 @@ void window_manage_all(void)
     if (children) XFree(children);
 }
 
+static Bool check_unmap(Display *d, XEvent *e, XPointer arg)
+{
+    const Window win = *(Window*)arg;
+    return ((e->type == DestroyNotify && e->xdestroywindow.window == win) ||
+            (e->type == UnmapNotify && e->xunmap.window == win));
+}
+
 void window_manage(Window win)
 {
     XEvent e;
@@ -158,10 +165,7 @@ void window_manage(Window win)
 
     /* check if it has already been unmapped by the time we started
        mapping. the grab does a sync so we don't have to here */
-    if (XCheckTypedWindowEvent(obt_display, win, DestroyNotify, &e) ||
-        XCheckTypedWindowEvent(obt_display, win, UnmapNotify, &e))
-    {
-        XPutBackEvent(obt_display, &e);
+    if (XCheckIfEvent(obt_display, &e, check_unmap, (XPointer)&win)) {
         ob_debug("Trying to manage unmapped window. Aborting that.");
         no_manage = TRUE;
     }
This page took 0.024289 seconds and 4 git commands to generate.