about summary refs log tree commit diff stats
path: root/draw.c
diff options
context:
space:
mode:
authorAnselm R.Garbe <arg@10ksloc.org>2006-08-10 10:27:08 +0200
committerAnselm R.Garbe <arg@10ksloc.org>2006-08-10 10:27:08 +0200
commit30561a0161629b15abe1beeb97eec3fc0768efaf (patch)
treefb9aacdc7d549f044650da4c4ff820815f617b3e /draw.c
parenta4c4998c8bb00faa6ec877e5643a05d0b2341346 (diff)
downloaddwm-30561a0161629b15abe1beeb97eec3fc0768efaf.tar.gz
removed unnecessary border color
Diffstat (limited to 'draw.c')
-rw-r--r--draw.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/draw.c b/draw.c
index 5d19bfb..812f398 100644
--- a/draw.c
+++ b/draw.c
@@ -9,26 +9,6 @@
 
 /* static */
 
-static void
-drawborder(void)
-{
-	XPoint points[5];
-
-	XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
-	XSetForeground(dpy, dc.gc, dc.border);
-	points[0].x = dc.x;
-	points[0].y = dc.y;
-	points[1].x = dc.w - 1;
-	points[1].y = 0;
-	points[2].x = 0;
-	points[2].y = dc.h - 1;
-	points[3].x = -(dc.w - 1);
-	points[3].y = 0;
-	points[4].x = 0;
-	points[4].y = -(dc.h - 1);
-	XDrawLines(dpy, dc.drawable, dc.gc, points, 5, CoordModePrevious);
-}
-
 static unsigned int
 textnw(const char *text, unsigned int len)
 {
@@ -52,7 +32,6 @@ drawtext(const char *text, Bool invert)
 
 	XSetForeground(dpy, dc.gc, invert ? dc.fg : dc.bg);
 	XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
-	drawborder();
 
 	if(!text)
 		return;