about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-08-25 15:21:49 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-08-25 15:21:49 +0200
commit7d4a5e654c5421411f1d66360d594285d462d77f (patch)
tree0429a68e71dc11bf25840e0dae216458c71a5db7
parent41ba7a79841c3d175f676e9a9ba6893dbc130856 (diff)
downloaddwm-7d4a5e654c5421411f1d66360d594285d462d77f.tar.gz
fixed typo
-rw-r--r--draw.c2
-rw-r--r--main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/draw.c b/draw.c
index 3ddc522..9204ee8 100644
--- 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 7ada114..d2da0c1 100644
--- a/main.c
+++ b/main.c
@@ -129,7 +129,7 @@ setup()
 	dc.status[ColFG] = getcolor(STATUSFGCOLOR);
 	setfont(FONT);
 
-	modew = textw(FLOATSYMBOL) > textw(TILEDSYMBOL) ? textw(FLOATSYMBOL) : textw(TILEDSYMBOL);
+	modew = textw(FLOATSYMBOL) > textw(TILESYMBOL) ? textw(FLOATSYMBOL) : textw(TILESYMBOL);
 	sx = sy = 0;
 	sw = DisplayWidth(dpy, screen);
 	sh = DisplayHeight(dpy, screen);