tapplied a fix related to Sanders remark to growcol - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit c7ae6334b7f0e8ac1fbc4da977fef4b92792767b
(DIR) parent eac04882b40595d724f4578b5acec5f22df570e3
(HTM) Author: Anselm R. Garbe <arg@10kloc.org>
Date: Tue, 5 Sep 2006 13:19:18 +0200
applied a fix related to Sanders remark to growcol
Diffstat:
M view.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/view.c b/view.c
t@@ -172,7 +172,7 @@ focusprev(Arg *arg)
void
growcol(Arg *arg)
{
- if(!sel || (arrange != dotile))
+ if(!sel || !clients || !clients->next || (arrange != dotile))
return;
if(sel == getnext(clients)) {
if(mw + arg->i > sw - 100)