aboutsummarylogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorAnselm R. Garbe2007-02-22 22:10:16 +0100
committerAnselm R. Garbe2007-02-22 22:10:16 +0100
commitcee52ce3ccddfea496ba8d78670af0ea829fc6d2 (patch)
tree4ef0fe004d15399bfa94946b4bb215340b9645f4 /client.c
parentbba0278c7825175f92e8c4b838bc088a10665b0f (diff)
downloadaur-cee52ce3ccddfea496ba8d78670af0ea829fc6d2.tar.gz
renamed untiled into floating, keeping tiled instead of tiling (afaik tiled sounds more correct) - English speakers convinced me
Diffstat (limited to 'client.c')
-rw-r--r--client.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/client.c b/client.c
index 4ba15c48eea5..d180278f3604 100644
--- a/client.c
+++ b/client.c
@@ -203,8 +203,8 @@ manage(Window w, XWindowAttributes *wa) {
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 @@ resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
}
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();
}