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 4ba15c4..d180278 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();
 }
 
lt;andreas@andreas-desktop> 2009-12-07 01:23:19 +0100 version 0.8.5: added Nimrod version of the compiler' href='/ahoang/Nim/commit/rod/bitsets.nim?h=devel&id=e254741541b0389dfb0b675116c76a6a144b90b7'>e25474154 ^
2df9b442c ^
e25474154 ^


2df9b442c ^
e25474154 ^

2df9b442c ^
e25474154 ^

2df9b442c ^
e25474154 ^

2df9b442c ^
e25474154 ^

2df9b442c ^
e25474154 ^

2df9b442c ^
e25474154 ^




2df9b442c ^
e25474154 ^



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