dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit 72faa1919e34ffeebb1ca35ae8c2c24b700dcf66
parent f8181f64e2ba4fca4e85036c48cf90a2151794fc
Author: Anselm R. Garbe <arg@suckless.org>
Date:   Mon, 15 Jan 2007 12:07:18 +0100

changed restack, to fix undrawed tag indicators
Diffstat:
Mview.c | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/view.c b/view.c
@@ -185,10 +185,9 @@ restack(void) {
     Client *c;
     XEvent ev;
 
-    if(!sel) {
-        drawstatus();
+    drawstatus();
+    if(!sel)
         return;
-    }
     if(sel->isfloat || arrange == dofloat)
         XRaiseWindow(dpy, sel->win);
     if(arrange != dofloat) {