aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authoroga2008-03-18 00:48:56 +0000
committeroga2008-03-18 00:48:56 +0000
commit51ec60ac51a9db833d03c08a0ab83c53993e222d (patch)
tree851c49d5c54429694bc303d5182301fb0f4d3cc6 /conf.c
parent5dd333909d5de2f0e988c07a65238ec2081eeafb (diff)
downloadcwm-51ec60ac51a9db833d03c08a0ab83c53993e222d.tar.gz
client_{,r}cycle() doens't need a client. so get rid of KBFUNC_NEEDSCLIENT.
this prevents the issue where you close or hide a window, and end up with no client selected (you're on the root window). When that happened alt-tab failed. This, however, exposed to me a few more issues in the alt-tabbing code: -the code to detect how many lines we need looks bogus (you always get three) -alt-tabbing when everything is hidden always reawakes the most recent window. Fixes for these will be forthcoming. ok simon@.
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 6fb9f3b..d1d5cd0 100644
--- a/conf.c
+++ b/conf.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: conf.c,v 1.20 2008/01/16 11:39:20 oga Exp $
+ * $Id: conf.c,v 1.21 2008/03/18 00:48:56 oga Exp $
*/
#include "headers.h"
@@ -345,8 +345,8 @@ struct {
{ "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 },
- { "rcycle", kbfunc_client_rcycle, KBFLAG_NEEDCLIENT, 0 },
+ { "cycle", kbfunc_client_cycle, 0, 0 },
+ { "rcycle", kbfunc_client_rcycle, 0, 0 },
{ "label", kbfunc_client_label, KBFLAG_NEEDCLIENT, 0 },
{ "delete", kbfunc_client_delete, KBFLAG_NEEDCLIENT, 0 },
{ "ptrmoveup", kbfunc_ptrmove, 0, (void *)CWM_UP },