JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
renamed MAXLEN into MAXTAGLEN (backward compliance)
[dwm.git] / dwm.c
diff --git a/dwm.c b/dwm.c
index b417167..14aa808 100644 (file)
--- a/dwm.c
+++ b/dwm.c
@@ -153,7 +153,7 @@ void killclient(const char *arg);
 void manage(Window w, XWindowAttributes *wa);
 void mappingnotify(XEvent *e);
 void maprequest(XEvent *e);
-void monocle(void);
+void maximise(void);
 void movemouse(Client *c);
 Client *nexttiled(Client *c);
 void propertynotify(XEvent *e);
@@ -1073,13 +1073,12 @@ maprequest(XEvent *e) {
 }
 
 void
-monocle(void) {
+maximise(void) {
        Client *c;
 
        domwfact = dozoom = False;
-       for(c = clients; c; c = c->next)
-               if(isvisible(c))
-                       resize(c, wax, way, waw - 2 * c->border, wah - 2 * c->border, RESIZEHINTS);
+       for(c = nexttiled(clients); c; c = nexttiled(c->next))
+               resize(c, wax, way, waw - 2 * c->border, wah - 2 * c->border, RESIZEHINTS);
 }
 
 void