about summary refs log tree commit diff stats
path: root/event.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-01-23 17:12:15 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-01-23 17:12:15 +0100
commit87836d79ef90e6c764d94c229183179a36eb699a (patch)
treeaf8cedf98db527f52d59fda1f9accf9653ff7cad /event.c
parentc8a12a0852a9befbf5a073910e8b0291914f80ab (diff)
downloaddwm-87836d79ef90e6c764d94c229183179a36eb699a.tar.gz
renamed activescreen into selscreen 3.2
Diffstat (limited to 'event.c')
-rw-r--r--event.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/event.c b/event.c
index 4f07789..418e986 100644
--- a/event.c
+++ b/event.c
@@ -230,7 +230,7 @@ enternotify(XEvent *e) {
 	if((c = getclient(ev->window)) && isvisible(c))
 		focus(c);
 	else if(ev->window == root) {
-		activescreen = True;
+		selscreen = True;
 		for(c = stack; c && !isvisible(c); c = c->snext);
 		focus(c);
 	}
@@ -269,7 +269,7 @@ leavenotify(XEvent *e) {
 	XCrossingEvent *ev = &e->xcrossing;
 
 	if((ev->window == root) && !ev->same_screen) {
-		activescreen = False;
+		selscreen = False;
 		focus(NULL);
 	}
 }
14:13:09 +0100 fixes and cleanups' href='/akspecs/ranger/commit/TODO?h=v1.1.2&id=ef0ee84300be230ab5ef417f4a303d07e5b5f0b9'>ef0ee843 ^
0b8a9d79 ^
a6791aee ^
23236d0c ^
08f21ae5 ^
4b826595 ^
757e1f55 ^
277ecc9e ^
9983328c ^
752378e0 ^
ee4ad7e5 ^

b13518af ^
509afd70 ^
fc486c60 ^
eb063058 ^
2c1d2db0 ^
7b04e507 ^
50845f37 ^
4be8b401 ^



d955e3f0 ^
75013dc7 ^
67bb838c ^
a808a661 ^
bba8d293 ^
2a64495f ^
5e449699 ^
fc486c60 ^
7b04e507 ^
6f43de0a ^




fca1fc4f ^
f70ee6b2 ^
0db4c9b2 ^
b2d63ef5 ^
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