# HG changeset patch # User Geoff Voelker # Date 894074801 0 # Node ID ff66bfc5d80180bdbc31acfdbdd3da9eae1d592c # Parent b8ebd3d021a421374e03a4b4bf4dc2ab83644853 (enum_font_cb2): Only ignore raster fonts when determining height and width. diff -r b8ebd3d021a4 -r ff66bfc5d801 src/w32fns.c --- a/src/w32fns.c Fri May 01 19:51:43 1998 +0000 +++ b/src/w32fns.c Sat May 02 02:06:41 1998 +0000 @@ -4808,7 +4808,7 @@ { char buf[100]; - if (!NILP (*(lpef->pattern)) && FontType == TRUETYPE_FONTTYPE) + if (!NILP (*(lpef->pattern)) && FontType != RASTER_FONTTYPE) { lplf->elfLogFont.lfHeight = lpef->logfont.lfHeight; lplf->elfLogFont.lfWidth = lpef->logfont.lfWidth;