aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-03-02 15:16:36 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-03-02 15:16:36 +0100
commit724f72142f6dc880068a92e412f3f3366e643569 (patch)
treed3ac4dc66f18021f9d9911d74c20bc8ca98dff9b /main.c
parent5b8dce15d3e4d1e50fc4f1df10665260f74a0a02 (diff)
downloaddmenu-724f72142f6dc880068a92e412f3f3366e643569.tar.gz
dmenu-724f72142f6dc880068a92e412f3f3366e643569.tar.bz2
dmenu-724f72142f6dc880068a92e412f3f3366e643569.zip
also, don't 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 d87e5dc..0f07773 100644
--- a/main.c
+++ b/main.c
@@ -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)