fixing updatetitle
This commit is contained in:
parent
758b100d12
commit
fc21dd4b7e
2
dwm.c
2
dwm.c
@ -1052,6 +1052,7 @@ manage(Window w, XWindowAttributes *wa) {
|
|||||||
die("fatal: could not malloc() %u bytes\n", sizeof(Client));
|
die("fatal: could not malloc() %u bytes\n", sizeof(Client));
|
||||||
*c = cz;
|
*c = cz;
|
||||||
c->win = w;
|
c->win = w;
|
||||||
|
updatetitle(c);
|
||||||
if(XGetTransientForHint(dpy, w, &trans))
|
if(XGetTransientForHint(dpy, w, &trans))
|
||||||
t = wintoclient(trans);
|
t = wintoclient(trans);
|
||||||
if(t) {
|
if(t) {
|
||||||
@ -1091,7 +1092,6 @@ manage(Window w, XWindowAttributes *wa) {
|
|||||||
updatesizehints(c);
|
updatesizehints(c);
|
||||||
XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
|
XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
|
||||||
grabbuttons(c, False);
|
grabbuttons(c, False);
|
||||||
updatetitle(c);
|
|
||||||
if(!c->isfloating)
|
if(!c->isfloating)
|
||||||
c->isfloating = trans != None || c->isfixed;
|
c->isfloating = trans != None || c->isfixed;
|
||||||
if(c->isfloating)
|
if(c->isfloating)
|
||||||
|
Loading…
Reference in New Issue
Block a user