1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

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

This commit is contained in:
Alexandre Julliard 2013-06-25 12:39:26 +02:00
parent 2088c36c19
commit 276306e227

View File

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