about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--dwm.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/dwm.c b/dwm.c
index a0ab126..01e8d1f 100644
--- a/dwm.c
+++ b/dwm.c
@@ -827,13 +827,14 @@ enternotify(XEvent *e) {
 	if((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
 		return;
 	c = wintoclient(ev->window);
-	if((m = wintomon(ev->window)) && m != selmon) {
+	m = c ? c->mon : wintomon(ev->window);
+	if(m != selmon) {
 		unfocus(selmon->sel, True);
 		selmon = m;
 	}
-	else if(c == selmon->sel || c == NULL)
+	else if(!c || c == selmon->sel)
 		return;
-	focus((wintoclient(ev->window)));
+	focus(c);
 }
 
 void
<vc@akkartik.com> 2017-10-11 02:01:29 -0700 4016 - include subx/ tests in CI' href='/akkartik/mu/commit/.travis.yml?h=main&id=52ea31027b500c1e5d4281e9b41b71fd184d8be9'>52ea3102 ^
9531333e ^
7e977235 ^

c912b731 ^
3968855b ^
a088d5c3 ^
52ea3102 ^
a088d5c3 ^




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