+ default to DejaVu Sans (ArialUnicodeMT is a monster when emitting PDFs)
This commit is contained in:
parent
4d6cc61ec1
commit
9089671ddd
1 changed files with 1 additions and 1 deletions
|
@ -357,7 +357,7 @@ void skia_renderer::process(text_symbolizer const& sym,
|
||||||
SkPaint paint;
|
SkPaint paint;
|
||||||
paint.setAntiAlias(true);
|
paint.setAntiAlias(true);
|
||||||
set_comp_op(paint, sym.comp_op());
|
set_comp_op(paint, sym.comp_op());
|
||||||
SkTypeface * typeface = typeface_cache_.create("ArialUnicodeMS"); // FIXME
|
SkTypeface * typeface = typeface_cache_.create("DejaVuSans"); // FIXME
|
||||||
if (typeface) paint.setTypeface(typeface);
|
if (typeface) paint.setTypeface(typeface);
|
||||||
paint.setTextEncoding(SkPaint::kUTF32_TextEncoding);
|
paint.setTextEncoding(SkPaint::kUTF32_TextEncoding);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue