removed hardcoded 'fixed' fallback, useless and misleading 796c4fb9
arg@mig29 · 2006-12-08 10:41 2 file(s) · +2 −5
config.mk +1 −1
1 1
# dmenu version
2 -
VERSION = 1.6
2 +
VERSION = 1.7
3 3
4 4
# Customize below to fit your system
5 5
draw.c +1 −4
107 107
		if(dc.font.xfont)
108 108
			XFreeFont(dpy, dc.font.xfont);
109 109
		dc.font.xfont = NULL;
110 -
		dc.font.xfont = XLoadQueryFont(dpy, fontstr);
111 -
		if (!dc.font.xfont)
112 -
			dc.font.xfont = XLoadQueryFont(dpy, "fixed");
113 -
		if (!dc.font.xfont)
110 +
		if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr)))
114 111
			eprint("error, cannot init 'fixed' font\n");
115 112
		dc.font.ascent = dc.font.xfont->ascent;
116 113
		dc.font.descent = dc.font.xfont->descent;