JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
some more simplifications of intro comment in dwm.h, this should suffice for comments...
[dwm.git] / event.c
diff --git a/event.c b/event.c
index e5ea712..74ae276 100644 (file)
--- a/event.c
+++ b/event.c
@@ -131,15 +131,15 @@ buttonpress(XEvent *e)
        }
        else if((c = getclient(ev->window))) {
                focus(c);
-               if(c->ismax || CLEANMASK(ev->state) != MODKEY)
+               if(maximized || CLEANMASK(ev->state) != MODKEY)
                        return;
-               if((ev->button == Button1) && ((arrange == dofloat) || c->isfloat)) {
+               if(ev->button == Button1 && (arrange == dofloat || c->isfloat)) {
                        restack(c);
                        movemouse(c);
                }
                else if(ev->button == Button2)
                        zoom(NULL);
-               else if(ev->button == Button3 && ((arrange == dofloat) || c->isfloat)) {
+               else if(ev->button == Button3 && (arrange == dofloat || c->isfloat)) {
                        restack(c);
                        resizemouse(c);
                }
@@ -173,7 +173,7 @@ configurerequest(XEvent *e)
        XWindowChanges wc;
 
        if((c = getclient(ev->window))) {
-               if(!c->isfloat && (arrange != dofloat) && c->ismax) {
+               if((c == sel) && !c->isfloat && (arrange != dofloat) && maximized) {
                        synconfig(c, sx, sy + bh, sw - 2, sh - 2 - bh, ev->border_width);
                        XSync(dpy, False);
                        return;
@@ -343,11 +343,11 @@ propertynotify(XEvent *e)
                                        arrange(NULL);
                                break;
                        case XA_WM_NORMAL_HINTS:
-                               setsize(c);
+                               updatesize(c);
                                break;
                }
                if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
-                       settitle(c);
+                       updatetitle(c);
                        drawtitle(c);
                }
        }