updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / cairo-ubuntu / cairo-respect-fontconfig.patch
blob3bb8b8f8338a0fe4607b6ad4e0c893943257a3e7
1 diff -Nur cairo-1.8.6.orig/src/cairo-ft-font.c cairo-1.8.6/src/cairo-ft-font.c
2 --- cairo-1.8.6.orig/src/cairo-ft-font.c 2008-12-12 20:48:04.000000000 +0800
3 +++ cairo-1.8.6/src/cairo-ft-font.c 2009-02-20 14:56:57.000000000 +0800
4 @@ -1448,8 +1448,15 @@
5 if (options->base.hint_style == CAIRO_HINT_STYLE_DEFAULT)
6 options->base.hint_style = other->base.hint_style;
8 - if (other->base.hint_style == CAIRO_HINT_STYLE_NONE)
9 - options->base.hint_style = CAIRO_HINT_STYLE_NONE;
10 + //if (other->base.hint_style == CAIRO_HINT_STYLE_NONE)
11 + //options->base.hint_style = CAIRO_HINT_STYLE_NONE;
13 + if (other->base.hint_style == CAIRO_HINT_STYLE_NONE ||
14 + other->base.hint_style == CAIRO_HINT_STYLE_SLIGHT ||
15 + other->base.hint_style == CAIRO_HINT_STYLE_MEDIUM ||
16 + other->base.hint_style == CAIRO_HINT_STYLE_FULL) {
17 + options->base.hint_style = other->base.hint_style;
18 + }
20 if (options->base.antialias == CAIRO_ANTIALIAS_NONE) {
21 if (options->base.hint_style == CAIRO_HINT_STYLE_NONE)