JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fixing updatetitle
authoranselm@x200s.config <unknown>
Sun, 12 Jul 2009 21:34:29 +0000 (22:34 +0100)
committeranselm@x200s.config <unknown>
Sun, 12 Jul 2009 21:34:29 +0000 (22:34 +0100)
dwm.c

diff --git a/dwm.c b/dwm.c
index 4d1493b..bfeae15 100644 (file)
--- a/dwm.c
+++ b/dwm.c
@@ -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)