mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-27 08:50:02 +03:00
[project @ 2006-03-08 08:27:19 by bursa]
Disable font blending during printing (should fix text printing problems for LaserJets). svn path=/import/netsurf/; revision=2111
This commit is contained in:
parent
0eebadfa40
commit
548e5089f8
@ -398,7 +398,8 @@ bool nsfont_paint(struct css_style *style, const char *string,
|
||||
nsfont_read_style(style, &font_family, &font_size, &font_style);
|
||||
|
||||
code = rufl_paint(font_family, font_style, font_size * scale,
|
||||
string, length, x, y, rufl_BLEND_FONT);
|
||||
string, length, x, y,
|
||||
print_active ? 0 : rufl_BLEND_FONT);
|
||||
if (code != rufl_OK) {
|
||||
if (code == rufl_FONT_MANAGER_ERROR)
|
||||
LOG(("rufl_paint: rufl_FONT_MANAGER_ERROR: 0x%x: %s",
|
||||
|
Loading…
Reference in New Issue
Block a user