summary refs log tree commit diff
path: root/conf.c
diff options
context:
space:
mode:
authorokan <okan>2015-07-12 14:31:47 +0000
committerokan <okan>2015-07-12 14:31:47 +0000
commitc0f2d0cc756f5ec7076946179efe2399f026c60a (patch)
treefa885c4df0aac7121c711e55631490023ee3f3ee /conf.c
parent671671959360a30e99b6812f132b6f1f0ff0d6e6 (diff)
parent0d13b7c2205bd40d9fd4db016c8cf96f620c4f8d (diff)
downloadcwm-c0f2d0cc756f5ec7076946179efe2399f026c60a.tar.gz
cwm-c0f2d0cc756f5ec7076946179efe2399f026c60a.tar.xz
cwm-c0f2d0cc756f5ec7076946179efe2399f026c60a.zip
cvsimport
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/conf.c b/conf.c
index b3960fe..66cd6fa 100644
--- a/conf.c
+++ b/conf.c
@@ -346,8 +346,8 @@ conf_client(struct client_ctx *cc)
 		}
 	}
 
-	cc->bwidth = ignore ? 0 : Conf.bwidth;
-	cc->flags |= ignore ? CLIENT_IGNORE : 0;
+	cc->bwidth = (ignore) ? 0 : Conf.bwidth;
+	cc->flags |= (ignore) ? CLIENT_IGNORE : 0;
 }
 
 static const struct {
@@ -360,6 +360,7 @@ static const struct {
 	{ "raise", kbfunc_client_raise, CWM_WIN, {0} },
 	{ "search", kbfunc_client_search, 0, {0} },
 	{ "menusearch", kbfunc_menu_cmd, 0, {0} },
+	{ "groupsearch", kbfunc_menu_group, 0, {0} },
 	{ "hide", kbfunc_client_hide, CWM_WIN, {0} },
 	{ "cycle", kbfunc_client_cycle, 0, {.i = CWM_CYCLE} },
 	{ "rcycle", kbfunc_client_cycle, 0, {.i = CWM_RCYCLE} },