X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/b233089815367983e07939b2aabb999fdc359f91..71b84c21149adb7adff6140a1f471c4a294edd4b:/event.c diff --git a/event.c b/event.c index e0718d3..4f07789 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) { - issel = True; + activescreen = True; for(c = stack; c && !isvisible(c); c = c->snext); focus(c); } @@ -269,8 +269,8 @@ leavenotify(XEvent *e) { XCrossingEvent *ev = &e->xcrossing; if((ev->window == root) && !ev->same_screen) { + activescreen = False; focus(NULL); - issel = False; } }