diff options
| -rw-r--r-- | config.mk | 2 | ||||
| -rw-r--r-- | draw.c | 5 | 
2 files changed, 2 insertions, 5 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | # dmenu version | 1 | # dmenu version | 
| 2 | VERSION = 1.6 | 2 | VERSION = 1.7 | 
| 3 | 3 | ||
| 4 | # Customize below to fit your system | 4 | # Customize below to fit your system | 
| 5 | 5 | ||
| @@ -107,10 +107,7 @@ setfont(const char *fontstr) { | |||
| 107 | if(dc.font.xfont) | 107 | if(dc.font.xfont) | 
| 108 | XFreeFont(dpy, dc.font.xfont); | 108 | XFreeFont(dpy, dc.font.xfont); | 
| 109 | dc.font.xfont = NULL; | 109 | dc.font.xfont = NULL; | 
| 110 | dc.font.xfont = XLoadQueryFont(dpy, fontstr); | 110 | if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))) | 
| 111 | if (!dc.font.xfont) | ||
| 112 | dc.font.xfont = XLoadQueryFont(dpy, "fixed"); | ||
| 113 | if (!dc.font.xfont) | ||
| 114 | eprint("error, cannot init 'fixed' font\n"); | 111 | eprint("error, cannot init 'fixed' font\n"); | 
| 115 | dc.font.ascent = dc.font.xfont->ascent; | 112 | dc.font.ascent = dc.font.xfont->ascent; | 
| 116 | dc.font.descent = dc.font.xfont->descent; | 113 | dc.font.descent = dc.font.xfont->descent; | 
