From 2088c36c19f3a4e4fa7ea8612640e05e305a8089 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 25 Jun 2013 12:39:22 +0200 Subject: [PATCH] clock: Don't offer vertical fonts in the font dialog. --- programs/clock/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/clock/main.c b/programs/clock/main.c index 048b1aac0e4..04bfe644246 100644 --- a/programs/clock/main.c +++ b/programs/clock/main.c @@ -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();