aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgotmor <gotmor@f2baff5b-bf2c-0410-a398-912abdc3d8b2>2007-12-22 15:53:02 +0000
committergotmor <gotmor@f2baff5b-bf2c-0410-a398-912abdc3d8b2>2007-12-22 15:53:02 +0000
commit6781f4a22d1a43b9b40c4e40c9299db332d43062 (patch)
tree7c0ade13306ef1faa3fc9d33ddc27cf26b82690b
parent67ca34039c1c81c6e0102386c723fd09bbc040e2 (diff)
downloaddzen-6781f4a22d1a43b9b40c4e40c9299db332d43062.tar.gz
dzen-6781f4a22d1a43b9b40c4e40c9299db332d43062.zip
removed debugging messages
git-svn-id: http://dzen.googlecode.com/svn/trunk@178 f2baff5b-bf2c-0410-a398-912abdc3d8b2
-rw-r--r--draw.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/draw.c b/draw.c
index c56038a..cc7907e 100644
--- a/draw.c
+++ b/draw.c
@@ -372,7 +372,6 @@ parse_line(const char *line, int lnr, int align, int reverse, int nodraw) {
recth = recth > dzen.line_height ? dzen.line_height : recth;
recty = (recty == 0) ? (dzen.line_height - recth)/2 : recty;
px = (rectx == 0) ? px : rectx+px;
- printf("rect1: w=%d h=%d x=%d y=%d\n", rectw, recth, rectx, recty);
setcolor(&pm, px, rectw, lastfg, lastbg, reverse, nobg);
XFillRectangle(dzen.dpy, pm, dzen.tgc, (int)px, (int)recty<0 ? dzen.line_height + recty : recty, rectw, recth);
@@ -515,7 +514,6 @@ parse_line(const char *line, int lnr, int align, int reverse, int nodraw) {
recth = recth > dzen.line_height ? dzen.line_height : recth;
recty = (recty == 0) ? (dzen.line_height - recth)/2 : recty;
px = (rectx == 0) ? px : rectx+px;
- printf("rect2: w=%d h=%d x=%d y=%d\n", rectw, recth, rectx, recty);
setcolor(&pm, px, rectw, lastfg, lastbg, reverse, nobg);
XFillRectangle(dzen.dpy, pm, dzen.tgc, (int)px, (int)recty<0 ? dzen.line_height + recty : recty, rectw, recth);