More font fixes.

svn path=/trunk/; revision=7920
This commit is contained in:
Richard Campbell 2004-01-30 15:53:36 +00:00
parent 9eb201eea9
commit 81984d5d5e
2 changed files with 4 additions and 4 deletions

View file

@ -91,7 +91,7 @@ OBM_COMBO BITMAP "resources/obm_combo.bmp"
SELWINDOW DIALOG DISCARDABLE 20, 20, 220, 140
STYLE DS_SYSMODAL | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION |
WS_SYSMENU
FONT 8, "MS Sans Serif"
FONT 8, "Bitstream Vera Sans"
CAPTION "Select Window"
BEGIN
LISTBOX 100, 5, 5, 210, 110, LBS_NOTIFY | LBS_NOINTEGRALHEIGHT | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_VSCROLL | WS_HSCROLL

View file

@ -1,4 +1,4 @@
/* $Id: misc.c,v 1.46 2004/01/26 23:22:48 weiden Exp $
/* $Id: misc.c,v 1.47 2004/01/30 15:53:36 rcampbell Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -455,8 +455,8 @@ NtUserSystemParametersInfo(
static BOOL GradientCaptions = TRUE;
/* FIXME: This should be obtained from the registry */
static LOGFONTW CaptionFont =
{ 12, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, ANSI_CHARSET,
0, 0, DEFAULT_QUALITY, VARIABLE_PITCH | FF_SWISS, L"" };
{ 10, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, ANSI_CHARSET,
0, 0, DEFAULT_QUALITY, VARIABLE_PITCH, L"Bitstream Vera Sans" };
NTSTATUS Status;
PWINSTATION_OBJECT WinStaObject;