about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--view.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/view.c b/view.c
index c5e942d..fd53dc8 100644
--- a/view.c
+++ b/view.c
@@ -112,12 +112,12 @@ dotile(Arg *arg) {
 
 	for(i = 0, c = clients; c; c = c->next) {
 		if(isvisible(c)) {
-			if(c->ismax)
-				togglemax(c);
 			if(c->isfloat) {
 				resize(c, True, TopLeft);
 				continue;
 			}
+			if(c->ismax)
+				togglemax(c);
 			if(n == 1) {
 				c->x = sx;
 				c->y = sy + bh;
@invisible-island.net> 1999-01-13 11:46:01 -0500 snapshot of project "lynx", label v2-8-2dev_13' href='/ingrix/lynx-snapshots/commit/cfg_defs.sh?id=a2e9461739dd215db90a5cee2c22a74e5f57d151'>a2e94617 ^
d3f9d547 ^
a2e94617 ^
d3f9d547 ^






a2e94617 ^
d3f9d547 ^

a2e94617 ^
d3f9d547 ^
a2e94617 ^



d3f9d547 ^



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