dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit 4bd4f421d39823a5514ff43640401719be3efbf3
parent 84432e6b36caee444f9e1cd2526b96b288655375
Author: Anselm R. Garbe <arg@suckless.org>
Date:   Thu, 22 Feb 2007 10:59:42 +0100

status needs update even in togglemax() - since we got an indicator for this
Diffstat:
Mlayout.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/layout.c b/layout.c
@@ -206,6 +206,7 @@ togglemax(Arg arg) {
     }
     else
         resize(sel, sel->rx, sel->ry, sel->rw, sel->rh, True);
+    drawstatus();
     while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
 }