Commit 5f701914 authored by Alexandre Julliard's avatar Alexandre Julliard

gdi32: Always let the Freetype driver fixup the AA flags.

parent c7ba8b7a
......@@ -3761,9 +3761,9 @@ static HFONT CDECL font_SelectFont( PHYSDEV dev, HFONT hfont, UINT *aa_flags )
font = select_font( &lf, dcmat, can_use_bitmap );
if (font && !*aa_flags)
if (font)
{
*aa_flags = font->aa_flags;
if (!*aa_flags) *aa_flags = font->aa_flags;
if (!*aa_flags)
{
if (lf.lfQuality == CLEARTYPE_QUALITY || lf.lfQuality == CLEARTYPE_NATURAL_QUALITY)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment