]> Dogcows Code - chaz/openbox/commitdiff
some smarter focus fallback for sloppy focus
authorDana Jansens <danakj@orodu.net>
Sat, 27 Sep 2003 05:31:40 +0000 (05:31 +0000)
committerDana Jansens <danakj@orodu.net>
Sat, 27 Sep 2003 05:31:40 +0000 (05:31 +0000)
openbox/focus.c

index b6d294bbd076096e107df463e908a02469cb0144..84bd7b09a02f4de7941046ec1eef0090e489f9d0 100644 (file)
@@ -180,22 +180,38 @@ void focus_fallback(ObFocusFallbackType type)
     focus_set_client(NULL);
 
     if (type == OB_FOCUS_FALLBACK_UNFOCUSING && old) {
-        /* try for transient relations */
         if (old->transient_for) {
-            if (old->transient_for == OB_TRAN_GROUP) {
-                for (it = focus_order[screen_desktop]; it; it = it->next) {
-                    GSList *sit;
+            gboolean trans = FALSE;
 
-                    for (sit = old->group->members; sit; sit = sit->next)
-                        if (sit->data == it->data)
-                            if (focus_fallback_transient(sit->data, old))
-                                return;
+            if (config_focus_last || !config_focus_follow)
+                trans = TRUE;
+            else {
+                ObClient *c;
+
+                if ((c = client_under_pointer()) &&
+                    client_search_transient(client_search_top_transient(c),
+                                            old))
+                    trans = TRUE;
+            }
+
+            /* try for transient relations */
+            if (trans) {
+                if (old->transient_for == OB_TRAN_GROUP) {
+                    for (it = focus_order[screen_desktop]; it; it = it->next) {
+                        GSList *sit;
+
+                        for (sit = old->group->members; sit; sit = sit->next)
+                            if (sit->data == it->data)
+                                if (focus_fallback_transient(sit->data, old))
+                                    return;
+                    }
+                } else {
+                    if (focus_fallback_transient(old->transient_for, old))
+                        return;
                 }
-            } else {
-                if (focus_fallback_transient(old->transient_for, old))
-                    return;
             }
         }
+    }
 
     if (!config_focus_last && config_focus_follow)
         if (focus_under_pointer())
@@ -217,7 +233,6 @@ void focus_fallback(ObFocusFallbackType type)
                             }
         }
 #endif
-    }
 
     for (it = focus_order[screen_desktop]; it != NULL; it = it->next)
         if (type != OB_FOCUS_FALLBACK_UNFOCUSING || it->data != old)
This page took 0.023415 seconds and 4 git commands to generate.