gdi32: Shift default height used in EnumStructs to the standard em size of 2048.

As pointed out by Dmitry Timoshkov.
oldstable
Jeremy White 2008-04-23 23:25:27 -05:00 committed by Alexandre Julliard
parent bf05ded740
commit f4625d1ae1
1 changed files with 1 additions and 1 deletions

View File

@ -3560,7 +3560,7 @@ static void GetEnumStructs(Face *face, LPENUMLOGFONTEXW pelf,
font = alloc_font();
if(face->scalable) {
height = 100;
height = -2048; /* 2048 is the most common em size */
width = 0;
} else {
height = face->size.y_ppem >> 6;