applied checking existance of >2 tiles patch (proposed by sander) to zoom and resizecol
authorAnselm R. Garbe <arg@10kloc.org>
Tue, 05 Sep 2006 16:00:09 +0200
changeset 423 6ba5dd429122
parent 422 44225ee80236
child 424 62145595dba9
applied checking existance of >2 tiles patch (proposed by sander) to zoom and resizecol
view.c
--- a/view.c	Tue Sep 05 13:52:23 2006 +0200
+++ b/view.c	Tue Sep 05 16:00:09 2006 +0200
@@ -183,10 +183,15 @@
 void
 resizecol(Arg *arg)
 {
-	Client *c = getnext(clients);
+	unsigned int n;
+	Client *c;
 
-	if(!sel || !getnext(c->next) || (arrange != dotile))
+	for(n = 0, c = clients; c; c = c->next)
+		if(isvisible(c) && !c->isfloat)
+			n++;
+	if(!sel || sel->isfloat || n < 2 || (arrange != dotile) || maximized)
 		return;
+
 	if(sel == getnext(clients)) {
 		if(mw + arg->i > sw - 100)
 			return;
@@ -303,12 +308,16 @@
 void
 zoom(Arg *arg)
 {
-	Client *c = sel;
+	unsigned int n;
+	Client *c;
 
-	if(!c || (arrange != dotile) || c->isfloat || maximized)
+	for(n = 0, c = clients; c; c = c->next)
+		if(isvisible(c) && !c->isfloat)
+			n++;
+	if(!sel || sel->isfloat || n < 2 || (arrange != dotile) || maximized)
 		return;
 
-	if(c == getnext(clients))
+	if((c = sel)  == getnext(clients))
 		if(!(c = getnext(c->next)))
 			return;
 	detach(c);