diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-03-02 15:16:36 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-03-02 15:16:36 +0100 |
commit | 724f72142f6dc880068a92e412f3f3366e643569 (patch) | |
tree | d3ac4dc66f18021f9d9911d74c20bc8ca98dff9b /main.c | |
parent | 5b8dce15d3e4d1e50fc4f1df10665260f74a0a02 (diff) |
also, don't set the font all the time
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -493,6 +493,8 @@ main(int argc, char *argv[]) { dc.drawable = XCreatePixmap(dpy, root, mw, mh, 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); if(maxname) cmdw = textw(maxname); if(cmdw > mw / 3) |