aewl

diff event.c @ 714:7034ee0f48d6

small changes
author Anselm R. Garbe <arg@suckless.org>
date Tue, 23 Jan 2007 12:29:17 +0100
parents b40134b93de3
children 4ce65f61f01b
line diff
     1.1 --- a/event.c	Tue Jan 23 12:04:22 2007 +0100
     1.2 +++ b/event.c	Tue Jan 23 12:29:17 2007 +0100
     1.3 @@ -230,7 +230,7 @@
     1.4  	if((c = getclient(ev->window)) && isvisible(c))
     1.5  		focus(c);
     1.6  	else if(ev->window == root) {
     1.7 -		issel = True;
     1.8 +		activescreen = True;
     1.9  		for(c = stack; c && !isvisible(c); c = c->snext);
    1.10  		focus(c);
    1.11  	}
    1.12 @@ -269,7 +269,7 @@
    1.13  	XCrossingEvent *ev = &e->xcrossing;
    1.14  
    1.15  	if((ev->window == root) && !ev->same_screen) {
    1.16 -		issel = False;
    1.17 +		activescreen = False;
    1.18  		focus(NULL);
    1.19  	}
    1.20  }