client.c
changeset 784 74722317b171
parent 782 92862ab407d5
child 785 179a71394e49
--- a/client.c	Mon Feb 19 16:41:47 2007 +0100
+++ b/client.c	Mon Feb 19 17:00:32 2007 +0100
@@ -253,8 +253,8 @@
 	updatetitle(c);
 	for(t = clients; t && t->win != trans; t = t->next);
 	settags(c, t);
-	if(!c->isfloat)
-		c->isfloat = (t != NULL) || c->isfixed;
+	if(!c->swimming)
+		c->swimming = (t != NULL) || c->isfixed;
 	attach(c);
 	attachstack(c);
 	c->isbanned = True;
@@ -268,7 +268,7 @@
 
 Client *
 nexttiled(Client *c) {
-	for(; c && (c->isfloat || !isvisible(c)); c = c->next);
+	for(; c && (c->swimming || !isvisible(c)); c = c->next);
 	return c;
 }
 
@@ -440,7 +440,7 @@
 
 	if(!sel)
 		return;
-	if(sel->isfloat || (lt->arrange == dofloat)) {
+	if(sel->swimming || (lt->arrange == swim)) {
 		togglemax(sel);
 		return;
 	}