client.c
changeset 837 123231b9eb87
parent 830 5a4fd8fec414
child 848 944739ec944a
--- a/client.c	Thu Feb 22 18:22:51 2007 +0100
+++ b/client.c	Thu Feb 22 22:10:16 2007 +0100
@@ -203,8 +203,8 @@
 	updatetitle(c);
 	for(t = clients; t && t->win != trans; t = t->next);
 	settags(c, t);
-	if(!c->isuntiled)
-		c->isuntiled = (t != NULL) || c->isfixed;
+	if(!c->isfloating)
+		c->isfloating = (t != NULL) || c->isfixed;
 	attach(c);
 	attachstack(c);
 	c->isbanned = True;
@@ -285,10 +285,10 @@
 }
 
 void
-toggletiled(const char *arg) {
-	if(!sel || lt->arrange == untile)
+togglefloating(const char *arg) {
+	if(!sel || lt->arrange == floating)
 		return;
-	sel->isuntiled = !sel->isuntiled;
+	sel->isfloating = !sel->isfloating;
 	lt->arrange();
 }