]> git.saurik.com Git - wxWidgets.git/commitdiff
Font change for OS/2 to a smaller font.
authorDavid Webster <Dave.Webster@bhmi.com>
Tue, 22 Jan 2002 23:18:38 +0000 (23:18 +0000)
committerDavid Webster <Dave.Webster@bhmi.com>
Tue, 22 Jan 2002 23:18:38 +0000 (23:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13754 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/gdicmn.cpp

index 91cdb4ae8c989d0e2a79e5495d21895d5c44d4df..d3e49f82c6848d4cdf75c63f0a021267abe97b37 100644 (file)
@@ -442,9 +442,12 @@ void wxInitializeStockObjects ()
 #else
 #endif
 */
-#if defined(__WXPM__) || defined(__WXMAC__)
+#if defined(__WXMAC__)
   static const int sizeFont = 12;
   wxNORMAL_FONT = new wxFont (sizeFont, wxMODERN, wxNORMAL, wxNORMAL);
+#elif defined(__WXPM__)
+  static const int sizeFont = 10;
+  wxNORMAL_FONT = new wxFont (sizeFont, wxMODERN, wxNORMAL, wxNORMAL);
 #else
   wxNORMAL_FONT = new wxFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
   static const int sizeFont = wxNORMAL_FONT->GetPointSize();