all repos — openbox @ 4ae6be577de367a62b7986b9f23c14fed38dcc85

openbox fork - make it a bit more like ryudo

some smarter focus fallback for sloppy focus
Dana Jansens danakj@orodu.net
commit

4ae6be577de367a62b7986b9f23c14fed38dcc85

parent

8aee387193fd73bbe4a8019bc7e31d5d0e18e83d

1 files changed, 27 insertions(+), 12 deletions(-)

jump to
M openbox/focus.copenbox/focus.c

@@ -180,22 +180,38 @@ */

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; + + 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; + 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 @@ return;

} } #endif - } for (it = focus_order[screen_desktop]; it != NULL; it = it->next) if (type != OB_FOCUS_FALLBACK_UNFOCUSING || it->data != old)