aboutsummaryrefslogtreecommitdiff
path: root/draw.c
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2011-05-15 21:54:26 +0100
committerConnor Lane Smith <cls@lubutu.com>2011-05-15 21:54:26 +0100
commit11ea52d1709423e0f4e6702aaee2dff2a3b0107e (patch)
treeb850f8349e91a48ff541aa2c97417b2f3b805d41 /draw.c
parent43540746077d4fd8ef963b5939934d32d59c9417 (diff)
downloaddmenu-11ea52d1709423e0f4e6702aaee2dff2a3b0107e.tar.gz
dmenu-11ea52d1709423e0f4e6702aaee2dff2a3b0107e.tar.bz2
dmenu-11ea52d1709423e0f4e6702aaee2dff2a3b0107e.zip
portability
Diffstat (limited to 'draw.c')
-rw-r--r--draw.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/draw.c b/draw.c
index 95ff072..351a43d 100644
--- a/draw.c
+++ b/draw.c
@@ -15,12 +15,13 @@ static Bool loadfont(DC *dc, const char *fontstr);
void
drawrect(DC *dc, int x, int y, unsigned int w, unsigned int h, Bool fill, unsigned long color) {
- XRectangle r = { dc->x + x, dc->y + y, w, h };
+ XRectangle r;
+
+ r.x = dc->x + x;
+ r.y = dc->y + y;
+ r.width = fill ? w : w-1;
+ r.height = fill ? h : h-1;
- if(!fill) {
- r.width -= 1;
- r.height -= 1;
- }
XSetForeground(dc->dpy, dc->gc, color);
(fill ? XFillRectangles : XDrawRectangles)(dc->dpy, dc->canvas, dc->gc, &r, 1);
}