win ce keypad (from <Someone>)

> I had some reports similar to "#U574: 3.4.1 On PocketPC, screwed
> up message area font" but regarding the keypad window. Since
> there is no separate option for keypad font, this patch makes it
> use message font option if it is set.
This commit is contained in:
nethack.allison
2003-08-14 11:23:33 +00:00
parent 4a0cd41ce3
commit 79bcc192eb

View File

@@ -800,7 +800,13 @@ void LayoutCmdWindow(HWND hWnd)
lgfnt.lfOutPrecision = OUT_DEFAULT_PRECIS; // output precision
lgfnt.lfClipPrecision = CLIP_CHARACTER_PRECIS; // clipping precision
lgfnt.lfQuality = DEFAULT_QUALITY; // output quality
lgfnt.lfPitchAndFamily = VARIABLE_PITCH; // pitch and family
if( iflags.wc_font_message &&
*iflags.wc_font_message ) {
lgfnt.lfPitchAndFamily = DEFAULT_PITCH; // pitch and family
NH_A2W( iflags.wc_font_message, lgfnt.lfFaceName, LF_FACESIZE);
} else {
lgfnt.lfPitchAndFamily = VARIABLE_PITCH; // pitch and family
}
data->font[NH_CMDPAD_FONT_NORMAL] = CreateFontIndirect(&lgfnt);
InvalidateRect(hWnd, NULL, TRUE);