Procházet zdrojové kódy

Changed default font string, removed missing fontset warnings

master
Bert Münnich před 13 roky
rodič
revize
7177270c10
2 změnil soubory, kde provedl 2 přidání a 5 odebrání
  1. +1
    -1
      config.def.h
  2. +1
    -4
      window.c

+ 1
- 1
config.def.h Zobrazit soubor

@@ -9,7 +9,7 @@ enum {
/* bar font: /* bar font:
* (see X(7) section "FONT NAMES" for valid values) * (see X(7) section "FONT NAMES" for valid values)
*/ */
static const char * const BAR_FONT = "6x13"; static const char * const BAR_FONT = "fixed";


/* colors: /* colors:
* (see X(7) section "COLOR NAMES" for valid values) * (see X(7) section "COLOR NAMES" for valid values)


+ 1
- 4
window.c Zobrazit soubor

@@ -54,11 +54,8 @@ void win_init_font(Display *dpy, const char *fontstr) {
char *def, **missing; char *def, **missing;


font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def); font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
if (missing) { if (missing)
while (n--)
warn("missing fontset: %s", missing[n]);
XFreeStringList(missing); XFreeStringList(missing);
}
if (font.set) { if (font.set) {
XFontStruct **xfonts; XFontStruct **xfonts;
char **font_names; char **font_names;


||||||
x
 
000:0
Načítá se…
Zrušit
Uložit