aboutsummaryrefslogtreecommitdiffstats
path: root/screen.c
diff options
context:
space:
mode:
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/screen.c b/screen.c
index 255184a..f793c5d 100644
--- a/screen.c
+++ b/screen.c
@@ -213,7 +213,7 @@ restack(void) {
XEvent ev;
XWindowChanges wc;
- drawstatus();
+ drawbar();
if(!sel)
return;
if(sel->isfloating || isfloating())
@@ -255,7 +255,7 @@ setlayout(const char *arg) {
if(sel)
arrange();
else
- drawstatus();
+ drawbar();
}
void
@@ -307,7 +307,7 @@ togglemax(const char *arg) {
}
else
resize(sel, sel->rx, sel->ry, sel->rw, sel->rh, True);
- drawstatus();
+ drawbar();
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
}