From 5e80ff3d31fde40c3cef5a3b47d08850d95b5d1a Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Mon, 6 Dec 2004 08:48:29 +0000 Subject: [PATCH] Removed CF_NOSIMULATIONS flag to increase range of available fonts git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/fontdlg.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/msw/fontdlg.cpp b/src/msw/fontdlg.cpp index a48a60a2ee..5564303799 100644 --- a/src/msw/fontdlg.cpp +++ b/src/msw/fontdlg.cpp @@ -66,7 +66,8 @@ IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog) int wxFontDialog::ShowModal() { - DWORD flags = CF_SCREENFONTS | CF_NOSIMULATIONS; + // It should be OK to always use GDI simulations + DWORD flags = CF_SCREENFONTS /* | CF_NOSIMULATIONS */ ; LOGFONT logFont; -- 2.45.2