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)  {
b2e98bf ^
eb184e0 ^



b2e98bf ^
605630c ^
650a1fb ^
eb184e0 ^
650a1fb ^

3791ec0 ^
eb184e0 ^



3791ec0 ^





eb184e0 ^



3791ec0 ^

eb184e0 ^



3791ec0 ^

eb184e0 ^





d8675f6 ^
eb184e0 ^




3791ec0 ^


eb184e0 ^

3791ec0 ^

eb184e0 ^


6458d72 ^

605630c ^
6649dcc ^
3791ec0 ^
650a1fb ^
605630c ^
1e7e57d ^
6649dcc ^
f1a34ae ^
6649dcc ^

1e7e57d ^

d8675f6 ^

f1a34ae ^
0dfe729 ^
d8675f6 ^
3657eae ^
650a1fb ^
6649dcc ^
650a1fb ^

6649dcc ^
650a1fb ^
0dfe729 ^


3657eae ^
6458d72 ^

f60c597 ^
6458d72 ^
f1a34ae ^
650a1fb ^

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