diff -r 52c1caae3fab -r 123231b9eb87 client.c --- 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(); }