aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authorjasper2007-06-05 19:03:20 +0000
committerjasper2007-06-05 19:03:20 +0000
commit044c0fe02de73847e6f7539431b3c4b95966be51 (patch)
tree89ed3c012e6e2d1a5073703b591cebf83a6aa951 /conf.c
parente594623ee759089fcbce526363231e802423def0 (diff)
downloadcwm-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 'conf.c')
-rw-r--r--conf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/conf.c b/conf.c
index 8749652..4c74966 100644
--- a/conf.c
+++ b/conf.c
@@ -4,7 +4,7 @@
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
* All rights reserved.
*
- * $Id: conf.c,v 1.5 2007/05/28 21:11:39 jasper Exp $
+ * $Id: conf.c,v 1.6 2007/06/05 19:03:20 jasper Exp $
*/
#include "headers.h"
@@ -199,9 +199,9 @@ conf_setup(struct conf *c)
conf_bindkey(c, kbfunc_menu_search,
XK_slash, ControlMask, 0, 0);
conf_bindkey(c, kbfunc_client_cycle,
- XK_Tab, Mod1Mask, KBFLAG_NEEDCLIENT, 0);
+ XK_Tab, Mod1Mask, 0, 0);
conf_bindkey(c, kbfunc_client_rcycle,
- XK_Tab, Mod1Mask|ShiftMask, KBFLAG_NEEDCLIENT, 0);
+ XK_Tab, Mod1Mask|ShiftMask, 0, 0);
conf_bindkey(c, kbfunc_client_label, XK_l,
ControlMask|Mod1Mask, KBFLAG_NEEDCLIENT, 0);
conf_bindkey(c, kbfunc_client_delete, XK_x,