clock: Don't offer vertical fonts in the font dialog.

This commit is contained in:
Alexandre Julliard 2013-06-25 12:39:22 +02:00
parent 90ca8eb21e
commit 2088c36c19
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ static VOID CLOCK_ChooseFont(VOID)
cf.lStructSize = sizeof(cf);
cf.hwndOwner = Globals.hMainWnd;
cf.lpLogFont = &lf;
cf.Flags = CF_SCREENFONTS | CF_INITTOLOGFONTSTRUCT;
cf.Flags = CF_SCREENFONTS | CF_INITTOLOGFONTSTRUCT | CF_NOVERTFONTS;
if (ChooseFontW(&cf)) {
Globals.logfont = lf;
CLOCK_ResetFont();