make it possible to cycle through the windows when non are selected.

(eg. when they're hidden, now you can cycle through them)

from aon@iki.fi
This commit is contained in:
jasper
2007-06-05 19:03:20 +00:00
parent 15fdb76df9
commit c025dc9089
4 changed files with 18 additions and 9 deletions

View File

@@ -85,15 +85,15 @@ kbfunc_menu_search(struct client_ctx *scratch, void *arg)
}
void
kbfunc_client_cycle(struct client_ctx *cc, void *arg)
kbfunc_client_cycle(struct client_ctx *scratch, void *arg)
{
client_cyclenext(cc, 0);
client_cyclenext(0);
}
void
kbfunc_client_rcycle(struct client_ctx *cc, void *arg)
kbfunc_client_rcycle(struct client_ctx *scratch, void *arg)
{
client_cyclenext(cc, 1);
client_cyclenext(1);
}
void