From 34fa313bc3136b4440e249c71e61c0fb03550187 Mon Sep 17 00:00:00 2001 From: Martin Duquesnoy Date: Sun, 12 Oct 2008 01:06:50 +0200 Subject: [PATCH] [wmfs] Fix mistake --- bar.c | 2 +- wmfs.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bar.c b/bar.c index d7ccee3..5c254bd 100644 --- a/bar.c +++ b/bar.c @@ -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 */ diff --git a/wmfs.c b/wmfs.c index 610a415..6c78b56 100644 --- a/wmfs.c +++ b/wmfs.c @@ -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; }