projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
41ba7a7
)
fixed typo
author
Anselm R. Garbe
<arg@10kloc.org>
Fri, 25 Aug 2006 13:21:49 +0000
(15:21 +0200)
committer
Anselm R. Garbe
<arg@10kloc.org>
Fri, 25 Aug 2006 13:21:49 +0000
(15:21 +0200)
draw.c
patch
|
blob
|
history
main.c
patch
|
blob
|
history
diff --git
a/draw.c
b/draw.c
index 3ddc522d1ad0d0e14152037e1a863a8e86e41f22..9204ee81097126b659893839e14d93bb269bc225 100644
(file)
--- a/
draw.c
+++ b/
draw.c
@@
-109,7
+109,7
@@
drawstatus()
else
drawtext(tags[i], dc.norm, sel && sel->tags[i]);
}
- x = dc.x + dc.w +
1
;
+ x = dc.x + dc.w +
2
;
dc.w = textw(stext);
dc.x = bx + bw - dc.w;
if(dc.x < x) {
diff --git
a/main.c
b/main.c
index 7ada11467bb8e4688c68a2aa4d18ba0490a25c20..d2da0c1317ef3f6ad0e5cdb08495df042690f521 100644
(file)
--- a/
main.c
+++ b/
main.c
@@
-129,7
+129,7
@@
setup()
dc.status[ColFG] = getcolor(STATUSFGCOLOR);
setfont(FONT);
- modew = textw(FLOATSYMBOL) > textw(TILE
DSYMBOL) ? textw(FLOATSYMBOL) : textw(TILED
SYMBOL);
+ modew = textw(FLOATSYMBOL) > textw(TILE
SYMBOL) ? textw(FLOATSYMBOL) : textw(TILE
SYMBOL);
sx = sy = 0;
sw = DisplayWidth(dpy, screen);
sh = DisplayHeight(dpy, screen);