fixed fallback
authorAnselm R. Garbe <garbeam@gmail.com>
Sat, 15 Sep 2007 18:28:20 +0000 (20:28 +0200)
committerAnselm R. Garbe <garbeam@gmail.com>
Sat, 15 Sep 2007 18:28:20 +0000 (20:28 +0200)
main.c

diff --git a/main.c b/main.c
index bf53763..fcabf01 100644 (file)
--- a/main.c
+++ b/main.c
@@ -160,8 +160,10 @@ initfont(const char *fontstr) {
                if(dc.font.xfont)
                        XFreeFont(dpy, dc.font.xfont);
                dc.font.xfont = NULL;
-               if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr)))
-                       eprint("error, cannot load font: '%s'\n", fontstr);
+               if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))) {
+                       if(!(dc.font.xfont = XLoadQueryFont(dpy, "fixed")))
+                               eprint("error, cannot load font: '%s'\n", fontstr);
+               }
                dc.font.ascent = dc.font.xfont->ascent;
                dc.font.descent = dc.font.xfont->descent;
        }