about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorarg@mmvi <unknown>2006-09-22 16:35:49 +0200
committerarg@mmvi <unknown>2006-09-22 16:35:49 +0200
commit114cc3ec020ac81bdb16123f4d956d80a531d830 (patch)
treedec6b48ad66453dc2070432025410d3edb1826e3
parent3c4b7672a84f4be9eeba889abda15a33c9b45eb1 (diff)
downloaddwm-114cc3ec020ac81bdb16123f4d956d80a531d830.tar.gz
applied Jukkas remark (dunno if this is correct though)
-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;