aboutsummaryrefslogtreecommitdiffstats
path: root/drw.c
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-08-04 14:29:08 +0000
committerterminaldweller <thabogre@gmail.com>2022-08-04 14:29:08 +0000
commita7ac271c71efa6182984af276656644bc1fe7461 (patch)
treeb6e4ad9903db16e0b6dee15bf800c27f77ec5755 /drw.c
parentadded the bidi patch (diff)
downloaddmenu-a7ac271c71efa6182984af276656644bc1fe7461.tar.gz
dmenu-a7ac271c71efa6182984af276656644bc1fe7461.zip
added the allow color patchHEADmain
Diffstat (limited to 'drw.c')
-rw-r--r--drw.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drw.c b/drw.c
index 25e7541..f5fb84d 100644
--- a/drw.c
+++ b/drw.c
@@ -125,6 +125,7 @@ static Fnt *xfont_create(Drw *drw, const char *fontname,
die("no font specified.");
}
+#if 0
/* Do not allow using color fonts. This is a workaround for a BadLength
* error from Xft with color glyphs. Modelled on the Xterm workaround. See
* https://bugzilla.redhat.com/show_bug.cgi?id=1498269
@@ -138,6 +139,7 @@ static Fnt *xfont_create(Drw *drw, const char *fontname,
XftFontClose(drw->dpy, xfont);
return NULL;
}
+#endif
font = ecalloc(1, sizeof(Fnt));
font->xfont = xfont;
@@ -331,7 +333,7 @@ int drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h,
fcpattern = FcPatternDuplicate(drw->fonts->pattern);
FcPatternAddCharSet(fcpattern, FC_CHARSET, fccharset);
FcPatternAddBool(fcpattern, FC_SCALABLE, FcTrue);
- FcPatternAddBool(fcpattern, FC_COLOR, FcFalse);
+ /* FcPatternAddBool(fcpattern, FC_COLOR, FcFalse); */
FcConfigSubstitute(NULL, fcpattern, FcMatchPattern);
FcDefaultSubstitute(fcpattern);