aboutsummaryrefslogtreecommitdiff
path: root/draw.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-03-02 15:14:40 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-03-02 15:14:40 +0100
commita686c9ccd293efd543b84c137d91fbeb0f95a621 (patch)
tree6060e0a032aa28579197057ad3315ba136273586 /draw.c
parent9ca5c3b108dbda55c1ac9f068b631911f5685eeb (diff)
we don't need to set the font all the time
Diffstat (limited to 'draw.c')
-rw-r--r--draw.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/draw.c b/draw.c
index e0a93fe..175017b 100644
--- a/draw.c
+++ b/draw.c
@@ -95,7 +95,6 @@ drawtext(const char *text, unsigned long col[ColLast]) {
int x, y, w, h;
static char buf[256];
unsigned int len, olen;
- XGCValues gcv;
XRectangle r = { dc.x, dc.y, dc.w, dc.h };
XSetForeground(dpy, dc.gc, col[ColBG]);
@@ -124,16 +123,11 @@ drawtext(const char *text, unsigned long col[ColLast]) {
}
if(w > dc.w)
return; /* too long */
- gcv.foreground = col[ColFG];
- if(dc.font.set) {
- XChangeGC(dpy, dc.gc, GCForeground, &gcv);
+ XSetForeground(dpy, dc.gc, col[ColFG]);
+ if(dc.font.set)
XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);
- }
- else {
- gcv.font = dc.font.xfont->fid;
- XChangeGC(dpy, dc.gc, GCForeground | GCFont, &gcv);
+ else
XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
- }
}
unsigned int