git clone dmenu dmenu Log gph
Found at: gopher.r-36.net:70/scm/dmenu/commit/796c4fb9e542d3e14c9a2a62a4a673d210c9ad12.gph
tremoved hardcoded 'fixed' fallback, useless and misleading - dmenu - Dmenu fork with xft fonts.
git clone git://r-36.net/dmenu
---
commit 796c4fb9e542d3e14c9a2a62a4a673d210c9ad12
parent 93c3f930c537ff5275fe4383ea00e8f13edcf13c
Date: Fri, 8 Dec 2006 10:41:16 +0100
removed hardcoded 'fixed' fallback, useless and misleading
Diffstat:
config.mk | 2 +-
draw.c | 5 +----
2 files changed, 2 insertions(+), 5 deletions(-)
---
diff --git a/config.mk b/config.mk
t@@ -1,5 +1,5 @@
# dmenu version
-VERSION = 1.6
+VERSION = 1.7
# Customize below to fit your system
t@@ -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;
.