about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorarg@mmvi <unknown>2006-09-15 10:49:05 +0200
committerarg@mmvi <unknown>2006-09-15 10:49:05 +0200
commit8e37c78ce3c33842a5800a445f90a3079a377eb6 (patch)
treec9dd6584462195c52db19611ec3b9785caf3e73f
parentca68975ff8fc1c7166c8d1f811e3dd52c735d19f (diff)
downloaddwm-8e37c78ce3c33842a5800a445f90a3079a377eb6.tar.gz
focus() enforces visibility of a client if not NULL
-rw-r--r--client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c
index 956b13f..dce06e9 100644
--- a/client.c
+++ b/client.c
@@ -84,7 +84,7 @@ void
 focus(Client *c) {
 	Client *old;
 
-	if(!issel)
+	if(!issel || (c && !isvisible(c)))
 		return;
 	if(!sel)
 		sel = c;
2a368733dbff8437a0400e130a783d'>^
bc0fa578 ^

5ae317fd ^










bc0fa578 ^
7c7d8c95 ^





bc0fa578 ^




7c7d8c95 ^



5ae317fd ^


7c7d8c95 ^
5ae317fd ^

bc0fa578 ^







7c7d8c95 ^




5ae317fd ^

bc0fa578 ^






5ae317fd ^




bc0fa578 ^

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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79