diff options
| author | anselm@x200s.config <unknown> | 2009-07-12 22:34:29 +0100 | 
|---|---|---|
| committer | anselm@x200s.config <unknown> | 2009-07-12 22:34:29 +0100 | 
| commit | fc21dd4b7e65bb511ac10f8bd8f469fe0f00a76e (patch) | |
| tree | 4dba1eff16c12c857e08cb0215a7d7566061af9a | |
| parent | 758b100d12ba1c52b5d7479e3ed334ba89e701f8 (diff) | |
fixing updatetitle
| -rw-r--r-- | dwm.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -1052,6 +1052,7 @@ manage(Window w, XWindowAttributes *wa) {  		die("fatal: could not malloc() %u bytes\n", sizeof(Client));  	*c = cz;  	c->win = w; +	updatetitle(c);  	if(XGetTransientForHint(dpy, w, &trans))  		t = wintoclient(trans);  	if(t) { @@ -1091,7 +1092,6 @@ manage(Window w, XWindowAttributes *wa) {  	updatesizehints(c);  	XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);  	grabbuttons(c, False); -	updatetitle(c);  	if(!c->isfloating)  		c->isfloating = trans != None || c->isfixed;  	if(c->isfloating) | 
