Commit b07fb96a authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 276306e2
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment