aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-19 17:12:26 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-19 17:12:26 +0100
commit6d5f67a0922d40d52290c12f9c0d937f4121406e (patch)
tree54f519e2d10bbfd1e1be9de149d2e25ee4ee382c /client.c
parentcee56d38632bbac08e7f59d58c7c7ab1370be329 (diff)
downloaddwm-6d5f67a0922d40d52290c12f9c0d937f4121406e.tar.zst
renames swim[ming] into versatile
Diffstat (limited to 'client.c')
-rw-r--r--client.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/client.c b/client.c
index e312a9a..2aa1955 100644
--- a/client.c
+++ b/client.c
@@ -253,8 +253,8 @@ manage(Window w, XWindowAttributes *wa) {
updatetitle(c);
for(t = clients; t && t->win != trans; t = t->next);
settags(c, t);
- if(!c->swimming)
- c->swimming = (t != NULL) || c->isfixed;
+ if(!c->versatile)
+ c->versatile = (t != NULL) || c->isfixed;
attach(c);
attachstack(c);
c->isbanned = True;
@@ -268,7 +268,7 @@ manage(Window w, XWindowAttributes *wa) {
Client *
nexttiled(Client *c) {
- for(; c && (c->swimming || !isvisible(c)); c = c->next);
+ for(; c && (c->versatile || !isvisible(c)); c = c->next);
return c;
}
@@ -440,7 +440,7 @@ zoom(Arg *arg) {
if(!sel)
return;
- if(sel->swimming || (lt->arrange == swim)) {
+ if(sel->versatile || (lt->arrange == versatile)) {
togglemax(sel);
return;
}