aboutsummaryrefslogtreecommitdiffstats
path: root/draw.c
diff options
context:
space:
mode:
authorarg@mig29 <unknown>2006-11-21 14:49:13 +0100
committerarg@mig29 <unknown>2006-11-21 14:49:13 +0100
commit931e712eac3dad86e9447944ac70f7b238f8a58d (patch)
tree094a2bcc36937099d60fded7a18673f1bda86eb5 /draw.c
parent4ec04209e0b63c76bc607ed963707ef0640c9ed4 (diff)
downloaddwm-931e712eac3dad86e9447944ac70f7b238f8a58d.tar.zst
applied Gottox patches
Diffstat (limited to 'draw.c')
-rw-r--r--draw.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/draw.c b/draw.c
index 178f1d2..c2c47dc 100644
--- a/draw.c
+++ b/draw.c
@@ -99,7 +99,7 @@ drawstatus(void) {
drawtext(arrange == dofloat ? FLOATSYMBOL : TILESYMBOL, dc.status, False);
x = dc.x + dc.w;
dc.w = textw(stext);
- dc.x = bx + bw - dc.w;
+ dc.x = bw - dc.w;
if(dc.x < x) {
dc.x = x;
dc.w = bw - x;
@@ -107,10 +107,7 @@ drawstatus(void) {
drawtext(stext, dc.status, False);
if((dc.w = dc.x - x) > bh) {
dc.x = x;
- if(sel)
- drawtext(sel->name, dc.sel, False);
- else
- drawtext(NULL, dc.norm, False);
+ drawtext(sel ? sel->name : NULL, dc.sel, False);
}
XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, bw, bh, 0, 0);
XSync(dpy, False);