diff options
author | arg@mig29 | 2006-12-08 10:41:16 +0100 |
---|---|---|
committer | arg@mig29 | 2006-12-08 10:41:16 +0100 |
commit | 796c4fb9e542d3e14c9a2a62a4a673d210c9ad12 (patch) | |
tree | 05afb1238abc377c01e2efd4cbfd9f1720628b8c /draw.c | |
parent | 93c3f930c537ff5275fe4383ea00e8f13edcf13c (diff) |
removed hardcoded 'fixed' fallback, useless and misleading
Diffstat (limited to 'draw.c')
-rw-r--r-- | draw.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -107,10 +107,7 @@ setfont(const char *fontstr) { if(dc.font.xfont) XFreeFont(dpy, dc.font.xfont); dc.font.xfont = NULL; - dc.font.xfont = XLoadQueryFont(dpy, fontstr); - if (!dc.font.xfont) - dc.font.xfont = XLoadQueryFont(dpy, "fixed"); - if (!dc.font.xfont) + if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))) eprint("error, cannot init 'fixed' font\n"); dc.font.ascent = dc.font.xfont->ascent; dc.font.descent = dc.font.xfont->descent; |