t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit c60de1acd47778b4835c14898fd8b1803537f9b3
   DIR parent 69b738c097d8f471873a227e8668d8a35014be3d
   URI Author: Anselm R. Garbe <arg@10kloc.org>
       Date:   Wed,  6 Sep 2006 12:10:43 +0200
       
       drawstatus even if no client exists
       Diffstat:
         M view.c                              |       4 +++-
       
       1 file changed, 3 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/view.c b/view.c
       t@@ -218,8 +218,10 @@ restack()
                Client *c;
                XEvent ev;
                
       -        if(!sel)
       +        if(!sel) {
       +                drawstatus();
                        return;
       +        }
                if(sel->isfloat || arrange == dofloat) {
                        XRaiseWindow(dpy, sel->win);
                        XRaiseWindow(dpy, sel->twin);