all repos — openbox @ ba6754ac88b48c652639aec56498cb23b422bafa

openbox fork - make it a bit more like ryudo

fix focus cycling. checking the wrong client.
Dana Jansens danakj@orodu.net
commit

ba6754ac88b48c652639aec56498cb23b422bafa

parent

c0ddd76ac57f088cbb3647165b12b54982554577

1 files changed, 2 insertions(+), 2 deletions(-)

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

@@ -539,8 +539,8 @@

for (it = ft->group->members; it; it = g_slist_next(it)) { ObClient *c = it->data; /* check that it's not a helper window to avoid infinite recursion */ - if (c != ft && !client_helper(ft) && - valid_focus_target(ft, all_desktops, FALSE)) + if (c != ft && !client_helper(c) && + valid_focus_target(c, all_desktops, FALSE)) { return TRUE; }