about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R.Garbe <arg@10ksloc.org>2006-08-10 17:48:50 +0200
committerAnselm R.Garbe <arg@10ksloc.org>2006-08-10 17:48:50 +0200
commit9fce8215b7c1b95903adbfd0cb7d6e2822ea063f (patch)
tree79925c9f6a0f50b192eba5b0e6d9a8eb1966910b
parent6521c2dd4160099616fa10035aa0f0e595c86204 (diff)
downloaddwm-9fce8215b7c1b95903adbfd0cb7d6e2822ea063f.tar.gz
applied Sanders zoom_update patch
-rw-r--r--client.c2
-rw-r--r--event.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/client.c b/client.c
index 5d34c07..8ec8ffb 100644
--- a/client.c
+++ b/client.c
@@ -461,7 +461,7 @@ zoom(Arg *arg)
 {
 	Client *c;
 
-	if(!sel || (arrange != dotile) || sel->isfloat)
+	if(!sel || (arrange != dotile) || sel->isfloat || sel->ismax)
 		return;
 
 	if(sel == getnext(clients))  {
diff --git a/event.c b/event.c
index 25ed6fa..650967e 100644
--- a/event.c
+++ b/event.c
@@ -132,8 +132,7 @@ buttonpress(XEvent *e)
 				movemouse(c);
 			break;
 		case Button2:
-			if(!c->ismax && arrange != dofloat && !c->isfloat)
-				zoom(NULL);
+			zoom(NULL);
 			break;
 		case Button3:
 			if(!c->ismax && (arrange == dofloat || c->isfloat))
l/subx/056write.subx.html?h=hlt&id=14a380525ed2df295463b1906b718cb26871df3b'>14a38052 ^
ac07e589 ^
60338448 ^
ce2c1efc ^
d3a9db3a ^
60338448 ^
d3a9db3a ^
60338448 ^
60338448 ^
9a777801 ^
104e521c ^















ce2c1efc ^
104e521c ^















ec73ed12 ^
104e521c ^
c56d803c ^














9a777801 ^
d1c9392a ^

14a38052 ^


d1c9392a ^
e99038ea ^
2104d1a7 ^
b1635a5c ^
33352536 ^

3d1c4216 ^































33352536 ^
3d1c4216 ^





































































































104e521c ^



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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226