all repos — openbox @ e8200ae603f33b70824c125ba6b37bfaec7d89ea

openbox fork - make it a bit more like ryudo

make focus cycle target fallback work right by going to the next prev window
Dana Jansens danakj@orodu.net
commit

e8200ae603f33b70824c125ba6b37bfaec7d89ea

parent

bd864012cd17f68c3a25ccfc2fc6cfd304c557f2

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

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

@@ -605,14 +605,14 @@ ObFocusCyclePopupTarget *t = it->data;

if (t->client == target) { /* move to a previous window if possible */ for (itt = it->prev; itt; itt = g_list_previous(itt)) { - ObFocusCyclePopupTarget *t2 = it->data; + ObFocusCyclePopupTarget *t2 = itt->data; if (focus_cycle_valid(t2->client)) return t2->client; } /* otherwise move to a following window if possible */ for (itt = it->next; itt; itt = g_list_next(itt)) { - ObFocusCyclePopupTarget *t2 = it->data; + ObFocusCyclePopupTarget *t2 = itt->data; if (focus_cycle_valid(t2->client)) return t2->client; }