all repos — dwm @ 25060031a5e9a505c53d8462c087d80013ffdc16

my dwm build

hotfix
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 13:20:29 +0200
commit

25060031a5e9a505c53d8462c087d80013ffdc16

parent

c7ae6334b7f0e8ac1fbc4da977fef4b92792767b

1 files changed, 3 insertions(+), 1 deletions(-)

jump to
M view.cview.c

@@ -172,7 +172,9 @@

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)