event.c
changeset 714 7034ee0f48d6
parent 711 b40134b93de3
child 716 4ce65f61f01b
--- a/event.c	Tue Jan 23 12:04:22 2007 +0100
+++ b/event.c	Tue Jan 23 12:29:17 2007 +0100
@@ -230,7 +230,7 @@
 	if((c = getclient(ev->window)) && isvisible(c))
 		focus(c);
 	else if(ev->window == root) {
-		issel = True;
+		activescreen = True;
 		for(c = stack; c && !isvisible(c); c = c->snext);
 		focus(c);
 	}
@@ -269,7 +269,7 @@
 	XCrossingEvent *ev = &e->xcrossing;
 
 	if((ev->window == root) && !ev->same_screen) {
-		issel = False;
+		activescreen = False;
 		focus(NULL);
 	}
 }