Bläddra i källkod

removed hardcoded 'fixed' fallback, useless and misleading

master
arg@mig29 17 år sedan
förälder
incheckning
796c4fb9e5
2 ändrade filer med 2 tillägg och 5 borttagningar
  1. +1
    -1
      config.mk
  2. +1
    -4
      draw.c

+ 1
- 1
config.mk Visa fil

@@ -1,5 +1,5 @@
# dmenu version
VERSION = 1.6
VERSION = 1.7

# Customize below to fit your system



+ 1
- 4
draw.c Visa fil

@@ -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;


Laddar…
Avbryt
Spara