Browse Source

drawstatus even if no client exists

master
Anselm R. Garbe 18 years ago
parent
commit
c60de1acd4
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      view.c

+ 3
- 1
view.c View File

@ -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);


Loading…
Cancel
Save