diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-03-02 15:14:40 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-03-02 15:14:40 +0100 |
commit | a686c9ccd293efd543b84c137d91fbeb0f95a621 (patch) | |
tree | 6060e0a032aa28579197057ad3315ba136273586 /main.c | |
parent | 9ca5c3b108dbda55c1ac9f068b631911f5685eeb (diff) | |
download | dwm-a686c9ccd293efd543b84c137d91fbeb0f95a621.tar.gz |
we don't need to set the font all the time 3.8
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
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); } |