about summary refs log tree commit diff stats
path: root/dwm.c
diff options
context:
space:
mode:
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/dwm.c b/dwm.c
index 50f4ea0..5aa71b7 100644
--- a/dwm.c
+++ b/dwm.c
@@ -646,8 +646,10 @@ enternotify(XEvent *e) {
 
 	if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
 		return;
-	if((c = getclient(ev->window)))
+	if((c = getclient(ev->window))) {
 		focus(c);
+		restack();
+	}
 	else if(ev->window == root) {
 		selscreen = True;
 		focus(NULL);
@@ -1592,7 +1594,7 @@ tile(void) {
 		else {  /* tile window */
 			if(i == 1) {
 				ny = way;
-				nx += mc->w + 2 * mc->border;
+				nx += mc->w + mc->border;
 				nw = waw - nx - 2 * c->border;
 			}
 			if(i + 1 == n) /* remainder */
@@ -1602,7 +1604,7 @@ tile(void) {
 		}
 		resize(c, nx, ny, nw, nh, RESIZEHINTS);
 		if(n > 1 && th != wah)
-			ny = c->y + c->h + 2 * c->border;
+			ny = c->y + c->h + c->border;
 	}
 }
 
rev}-field in compose view' href='/akspecs/aerc/commit/commands/compose/next-field.go?id=f37508a53980f38c530780650338797e81fe1e3c'>f37508a ^
6838c23 ^
2a09617 ^


6838c23 ^
2a09617 ^
f37508a ^

6838c23 ^
f37508a ^










2a09617 ^

feacca3 ^
2a09617 ^
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