projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c7ae633
)
hotfix
author
Anselm R. Garbe
<arg@10kloc.org>
Tue, 5 Sep 2006 11:20:29 +0000
(13:20 +0200)
committer
Anselm R. Garbe
<arg@10kloc.org>
Tue, 5 Sep 2006 11:20:29 +0000
(13:20 +0200)
view.c
patch
|
blob
|
history
diff --git
a/view.c
b/view.c
index f1be60925791b8c8f70f413cf20141a67a1786fe..8f5ad64fc89c4d74e022190be166c626fea86710 100644
(file)
--- 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)