aboutsummarylogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorAnselm R. Garbe2007-02-22 17:43:41 +0100
committerAnselm R. Garbe2007-02-22 17:43:41 +0100
commit91bf78e2b78f965501afbc3d008bfd5cd6b3f4f4 (patch)
treeb5a473305ffcb388c60ec7cc4a6b712c397428f1 /client.c
parent903e4107095f924bb284beab340fbb72e8a842ef (diff)
downloadaur-91bf78e2b78f965501afbc3d008bfd5cd6b3f4f4.tar.gz
renamed versatile into untiled
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 2e443c21b088..4ba15c48eea5 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->isversatile)
- c->isversatile = (t != NULL) || c->isfixed;
+ if(!c->isuntiled)
+ c->isuntiled = (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
-toggleversatile(const char *arg) {
- if(!sel || lt->arrange == versatile)
+toggletiled(const char *arg) {
+ if(!sel || lt->arrange == untile)
return;
- sel->isversatile = !sel->isversatile;
+ sel->isuntiled = !sel->isuntiled;
lt->arrange();
}