aboutsummaryrefslogtreecommitdiff
path: root/main.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 /main.c
parent9ca5c3b108dbda55c1ac9f068b631911f5685eeb (diff)
we don't need to set the font all the time
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.c b/main.c
index 8b67408..39958c1 100644
--- a/main.c
+++ b/main.c
@@ -205,6 +205,8 @@ setup(void) {
dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen));
dc.gc = XCreateGC(dpy, root, 0, 0);
XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
+ if(!dc.font.set)
+ XSetFont(dpy, dc.gc, dc.font.xfont->fid);
/* multihead support */
selscreen = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask);
}