about summary refs log tree commit diff stats
path: root/client.c
diff options
context:
space:
mode:
authorarg@10ksloc.org <unknown>2006-08-05 14:56:32 +0200
committerarg@10ksloc.org <unknown>2006-08-05 14:56:32 +0200
commitecc95c903ba6c9a548588a79c1093e6372555f2c (patch)
tree33b1bfb0fe381d01f09bb73b32d78c0260f7fc73 /client.c
parenta207949b6503546379e3ab727cecc2f3e0cff78d (diff)
downloaddwm-ecc95c903ba6c9a548588a79c1093e6372555f2c.tar.gz
using -Os again, zoom is ignored in floating mode or on floating clients
Diffstat (limited to 'client.c')
-rw-r--r--client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c
index 7c3b28b..589b73e 100644
--- a/client.c
+++ b/client.c
@@ -466,7 +466,7 @@ zoom(Arg *arg)
 {
 	Client *c;
 
-	if(!sel)
+	if(!sel || arrange != dotile)
 		return;
 
 	if(sel == getnext(clients) && sel->next)  {
6' href='#n166'>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 227 228 229 230 231