diff options
| -rw-r--r-- | client.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| @@ -262,11 +262,13 @@ manage(Window w, XWindowAttributes *wa)  				c->maxw == c->minw && c->maxh == c->minh);  	settitle(c); +	if(isvisible(c)) +		sel = c; +	arrange(NULL);  	XMapWindow(dpy, c->win);  	XMapWindow(dpy, c->title);  	if(isvisible(c))  		focus(c); -	arrange(NULL);  }  void | 
