From 2f7a7caa92cea98490041d843f9c963239fd43f5 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 25 Jun 2013 12:39:37 +0200 Subject: [PATCH] winefile: Don't offer vertical fonts in the font dialog. --- programs/winefile/winefile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/winefile/winefile.c b/programs/winefile/winefile.c index 11fddab1502..3b302554bd2 100644 --- a/programs/winefile/winefile.c +++ b/programs/winefile/winefile.c @@ -245,7 +245,7 @@ static inline void choose_font(HWND hwnd) chFont.hwndOwner = hwnd; chFont.hDC = NULL; chFont.lpLogFont = &lFont; - chFont.Flags = CF_SCREENFONTS | CF_FORCEFONTEXIST | CF_LIMITSIZE | CF_NOSCRIPTSEL | CF_INITTOLOGFONTSTRUCT; + chFont.Flags = CF_SCREENFONTS | CF_FORCEFONTEXIST | CF_LIMITSIZE | CF_NOSCRIPTSEL | CF_INITTOLOGFONTSTRUCT | CF_NOVERTFONTS; chFont.rgbColors = RGB(0,0,0); chFont.lCustData = 0; chFont.lpfnHook = NULL;