JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
don't check for monocle layout in zoom() exit condition
[dwm.git] / dwm.c
diff --git a/dwm.c b/dwm.c
index 780f1fb..7846be0 100644 (file)
--- a/dwm.c
+++ b/dwm.c
@@ -2034,7 +2034,6 @@ zoom(const Arg *arg) {
        Client *c = selmon->sel;
 
        if(!selmon->lt[selmon->sellt]->arrange
-       || selmon->lt[selmon->sellt]->arrange == monocle
        || (selmon->sel && selmon->sel->isfloating))
                return;
        if(c == nexttiled(selmon->clients))
@@ -2046,7 +2045,7 @@ zoom(const Arg *arg) {
 int
 main(int argc, char *argv[]) {
        if(argc == 2 && !strcmp("-v", argv[1]))
-               die("dwm-"VERSION", © 2006-2010 dwm engineers, see LICENSE for details\n");
+               die("dwm-"VERSION", © 2006-2011 dwm engineers, see LICENSE for details\n");
        else if(argc != 1)
                die("usage: dwm [-v]\n");
        if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())