JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
we don't need to set the font all the time
[dwm.git] / main.c
diff --git a/main.c b/main.c
index 8b67408..39958c1 100644 (file)
--- 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);
 }