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

oldstable
Alexandre Julliard 2013-06-25 12:39:32 +02:00
parent 276306e227
commit b07fb96a23
1 changed files with 1 additions and 1 deletions

View File

@ -1106,7 +1106,7 @@ static void on_select_font(HWND hDlg)
cf.lStructSize = sizeof(CHOOSEFONTW);
cf.hwndOwner = hDlg;
cf.lpLogFont = &(metrics[index].lf);
cf.Flags = CF_SCREENFONTS | CF_INITTOLOGFONTSTRUCT | CF_NOSCRIPTSEL;
cf.Flags = CF_SCREENFONTS | CF_INITTOLOGFONTSTRUCT | CF_NOSCRIPTSEL | CF_NOVERTFONTS;
ChooseFontW(&cf);
}