about summary refs log tree commit diff stats
path: root/draw.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-22 22:10:16 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-22 22:10:16 +0100
commit338c0838580b32f1258a800392d93cf973baf1e6 (patch)
tree30387958f30336d7617f63a085128cbe40651d2f /draw.c
parent671442e89d6e8e8c42912df08a82466f126a7b3b (diff)
downloaddwm-338c0838580b32f1258a800392d93cf973baf1e6.tar.gz
renamed untiled into floating, keeping tiled instead of tiling (afaik tiled sounds more correct) - English speakers convinced me
Diffstat (limited to 'draw.c')
-rw-r--r--draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/draw.c b/draw.c
index 58f3998..e0a93fe 100644
--- a/draw.c
+++ b/draw.c
@@ -81,7 +81,7 @@ drawstatus(void) {
 		dc.x = x;
 		if(sel) {
 			drawtext(sel->name, dc.sel);
-			drawsquare(sel->ismax, sel->isuntiled, dc.sel);
+			drawsquare(sel->ismax, sel->isfloating, dc.sel);
 		}
 		else
 			drawtext(NULL, dc.norm);
selm@anselm1 <unknown> 2008-03-04 21:40:49 +0000 committer anselm@anselm1 <unknown> 2008-03-04 21:40:49 +0000 renamed monocle into maxmise, documented the keybindings in dwm(1)' href='/acidbong/suckless/dwm/commit/config.def.h?h=6.2&id=39af3c2607de029b66498064c4fc374df34fc653'>39af3c2 ^
a8e0772 ^
00ca643 ^
a8e0772 ^
349d768 ^
39d1ecd ^

f196b71 ^
3794c62 ^
f196b71 ^
a8e0772 ^

5497268 ^
a8e0772 ^
2d4faae ^


3794c62 ^

f196b71 ^
349d768 ^
0fe2e78 ^
5cd65f8 ^



0fe2e78 ^
512541b ^
1edf6a7 ^




d662f98 ^
a8e0772 ^
349d768 ^
1edf6a7 ^

5cd65f8 ^










a8e0772 ^

5cd65f8 ^









b515765 ^
5cd65f8 ^













5cd65f8 ^
1edf6a7 ^
5cd65f8 ^


5cd65f8 ^










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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111