From 25060031a5e9a505c53d8462c087d80013ffdc16 Mon Sep 17 00:00:00 2001 From: "Anselm R. Garbe" Date: Tue, 5 Sep 2006 13:20:29 +0200 Subject: [PATCH] hotfix --- view.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/view.c b/view.c index f1be609..8f5ad64 100644 --- a/view.c +++ b/view.c @@ -172,7 +172,9 @@ focusprev(Arg *arg) void growcol(Arg *arg) { - if(!sel || !clients || !clients->next || (arrange != dotile)) + Client *c = getnext(clients); + + if(!sel || !c || !getnext(c->next) || (arrange != dotile)) return; if(sel == getnext(clients)) { if(mw + arg->i > sw - 100) -- 1.7.10.4