diff options
author | jasper | 2007-06-05 19:03:20 +0000 |
---|---|---|
committer | jasper | 2007-06-05 19:03:20 +0000 |
commit | 044c0fe02de73847e6f7539431b3c4b95966be51 (patch) | |
tree | 89ed3c012e6e2d1a5073703b591cebf83a6aa951 /kbfunc.c | |
parent | e594623ee759089fcbce526363231e802423def0 (diff) | |
download | cwm-044c0fe02de73847e6f7539431b3c4b95966be51.tar.gz |
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
Diffstat (limited to '')
-rw-r--r-- | kbfunc.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -4,7 +4,7 @@ * Copyright (c) 2004 Martin Murray <mmurray@monkey.org> * All rights reserved. * - * $Id: kbfunc.c,v 1.3 2007/05/28 18:34:27 jasper Exp $ + * $Id: kbfunc.c,v 1.4 2007/06/05 19:03:20 jasper Exp $ */ #include "headers.h" @@ -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 |