diff options
author | okan | 2007-12-31 02:49:45 +0000 |
---|---|---|
committer | okan | 2007-12-31 02:49:45 +0000 |
commit | 41c5ed0af6285c344148e31f5bc4ef89826c0a79 (patch) | |
tree | 64cefd9c41378aa6ca5a288e9bb02e69e8958e20 | |
parent | 39193ce4f0d99ad8f16707e00590cb0831c3b2ea (diff) | |
download | cwm-41c5ed0af6285c344148e31f5bc4ef89826c0a79.tar.gz |
allow the search feature to work in the root window, like other similar ones.
ok todd@
-rw-r--r-- | conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> * All rights reserved. * - * $Id: conf.c,v 1.16 2007/11/28 16:35:52 ian Exp $ + * $Id: conf.c,v 1.17 2007/12/31 02:49:45 okan Exp $ */ #include "headers.h" @@ -344,7 +344,7 @@ struct { } name_to_kbfunc[] = { { "lower", kbfunc_client_lower, KBFLAG_NEEDCLIENT, 0 }, { "raise", kbfunc_client_raise, KBFLAG_NEEDCLIENT, 0 }, - { "search", kbfunc_client_search, KBFLAG_NEEDCLIENT, 0 }, + { "search", kbfunc_client_search, 0, 0 }, { "menusearch", kbfunc_menu_search, 0, 0 }, { "hide", kbfunc_client_hide, KBFLAG_NEEDCLIENT, 0 }, { "cycle", kbfunc_client_cycle, KBFLAG_NEEDCLIENT, 0 }, |