about summary refs log tree commit diff stats
path: root/client.c
diff options
context:
space:
mode:
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 2e443c2..4ba15c4 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();
 }
 
/a>
b27c5d0f ^
8685e78c ^
2490f5b4 ^
71577c1f ^
81190251 ^

447d2358 ^
71577c1f ^
7db1bcee ^

d56f6dc3 ^
5c65599e ^
81190251 ^
447d2358 ^
447d2358 ^




























5c65599e ^
c4412fe8 ^



b6536ddf ^
c4412fe8 ^








b98e119c ^
c4412fe8 ^
447d2358 ^
7db1bcee ^



00a475cf ^
7db1bcee ^
5c65599e ^
81190251 ^
3e3786eb ^
71577c1f ^

bf347ab9 ^
447d2358 ^
5c65599e ^
447d2358 ^
7db1bcee ^
00a475cf ^
7db1bcee ^
5c65599e ^
81190251 ^
447d2358 ^
447d2358 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95