Mercurial > aewl
diff draw.c @ 626:2644c951fc74
removed the hardcoded fixed fallback, it is useless in non-Latin1 environments
author | arg@mig29 |
---|---|
date | Fri, 08 Dec 2006 10:40:09 +0100 |
parents | bda4880c462d |
children | f83ac177a3a0 |
line wrap: on
line diff
--- a/draw.c Thu Dec 07 16:38:57 2006 +0100 +++ b/draw.c Fri Dec 08 10:40:09 2006 +0100 @@ -197,10 +197,7 @@ 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;