about summary refs log tree commit diff stats
path: root/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'client.c')
-rw-r--r--client.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/client.c b/client.c
index 9944a05..52e623a 100644
--- a/client.c
+++ b/client.c
@@ -201,8 +201,6 @@ manage(Window w, XWindowAttributes *wa)
 	c->win = w;
 	c->bx = c->fx = c->tx = wa->x;
 	c->by = c->fy = c->ty = wa->y;
-	if(c->fy < bh)
-		c->by = c->fy = c->ty += bh;
 	c->bw = c->fw = c->tw = wa->width;
 	c->fh = c->th = wa->height;
 	c->bh = bh;
@@ -212,6 +210,9 @@ manage(Window w, XWindowAttributes *wa)
 	diff = sh - c->fh - bh;
 	c->fy = random() % (diff ? diff : 1);
 
+	if(c->fy < bh)
+		c->by = c->fy = c->ty = bh;
+
 	c->border = 1;
 	c->proto = getproto(c->win);
 	setsize(c);
-0700 committer Kartik K. Agaram <vc@akkartik.com> 2015-05-07 12:47:25 -0700 1297' href='/akkartik/mu/commit/vimrc.vim?h=main&id=94fa5c95ad9c8beead183bb7c4b88c7c2c7ca6ec'>94fa5c95 ^
1ae4e0d9 ^
b3cdcdd4 ^
b96af395 ^









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