[wmfs] Fix mistake

This commit is contained in:
Martin Duquesnoy 2008-10-12 01:06:50 +02:00
parent 1aae3ffe3a
commit 34fa313bc3
2 changed files with 4 additions and 4 deletions

2
bar.c
View File

@ -134,7 +134,7 @@ updatebar(void)
{
xprint(bar->dr, taglen[conf.ntag] - sp/3, fonth,
conf.colors.layout_fg, conf.colors.layout_bg,
0, -sp, tags[seltag].layout.symbol);
0, 0, tags[seltag].layout.symbol);
}
/* Draw status text */

6
wmfs.c
View File

@ -196,9 +196,9 @@ focus(Client *c)
else
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
for(cc = clients; c; c = c->next)
if(!ishide(c))
updatetitle(c);
for(cc = clients; cc; cc = cc->next)
if(!ishide(cc))
updatetitle(cc);
return;
}