]> Dogcows Code - chaz/openbox/commitdiff
ignore focus events on root that we don't care about
authorDana Jansens <danakj@orodu.net>
Wed, 21 Mar 2007 16:12:21 +0000 (16:12 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 21 Mar 2007 16:12:21 +0000 (16:12 +0000)
openbox/event.c

index 2ce29d5c00899f8ee516d194e3eed8035dc2846d..b57037829f35a88fdd76419b18c602c6aeda25a1 100644 (file)
@@ -312,6 +312,7 @@ static gboolean wanted_focusevent(XEvent *e)
 {
     gint mode = e->xfocus.mode;
     gint detail = e->xfocus.detail;
+    Window win = e->xany.window;
 
     if (e->type == FocusIn) {
 
@@ -326,6 +327,14 @@ static gboolean wanted_focusevent(XEvent *e)
 
         /* These are the ones we want.. */
 
+        if (win == RootWindow(ob_display, ob_screen)) {
+            /* This means focus reverted off of a client */
+            if (detail == NotifyPointerRoot || detail == NotifyDetailNone)
+                return TRUE;
+            else
+                return FALSE;
+        }
+
         /* This means focus moved from the root window to a client */
         if (detail == NotifyVirtual)
             return TRUE;
@@ -334,8 +343,7 @@ static gboolean wanted_focusevent(XEvent *e)
             return TRUE;
 
         /* This means focus reverted off of a client */
-        if (detail == NotifyPointerRoot || detail == NotifyDetailNone ||
-            detail == NotifyInferior)
+        if (detail == NotifyInferior)
             return TRUE;
 
         /* Otherwise.. */
@@ -350,6 +358,10 @@ static gboolean wanted_focusevent(XEvent *e)
         if (mode == NotifyGrab)
             return FALSE;
 
+        /* Focus left the root window revertedto state */
+        if (win == RootWindow(ob_display, ob_screen))
+            return FALSE;
+
         /* These are the ones we want.. */
 
         /* This means focus moved from a client to the root window */
This page took 0.029129 seconds and 4 git commands to generate.