Konstantin

Results 13 comments of Konstantin

> I might be wrong though. Could you upload compiled test binary somewhere so I can test? [WFFontDlg.zip](https://github.com/madewokherd/wine-mono/files/7177022/WFFontDlg.zip) WinForms test app

> I take that back, I see correct name returned from the dialog, but then something weird happens in gdiplus. I also have some errors in gdiplus when try to...

Native call ChooseFont() returns correct font name. ``` CHOOSEFONT cf; static LOGFONT lf; memset((void*)&cf, 1, sizeof(cf)); cf.lStructSize = sizeof(cf); cf.hwndOwner = NULL; cf.lpLogFont = &lf; cf.Flags = CF_SCREENFONTS | CF_EFFECTS;...