]> git.saurik.com Git - wxWidgets.git/commitdiff
use NormalizeFontSizes if on wxGTK2
authorRobin Dunn <robin@alldunn.com>
Fri, 6 Aug 2004 00:03:23 +0000 (00:03 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 6 Aug 2004 00:03:23 +0000 (00:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28651 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/About.py
wxPython/demo/HtmlWindow.py

index 9b5ff7d3ff05ebf6c16dd22a04f82b1d53a3c0a9..10460ace1977a401ed26ae34047e6691b7667ab4 100644 (file)
@@ -46,6 +46,8 @@ demo item so you can learn how to use the classes yourself.</p>
     def __init__(self, parent):
         wx.Dialog.__init__(self, parent, -1, 'About the wxPython demo',)
         html = wx.html.HtmlWindow(self, -1, size=(420, -1))
+        if "gtk2" in wx.PlatformInfo:
+            html.NormalizeFontSizes()
         py_version = sys.version.split()[0]
         html.SetPage(self.text % (wx.VERSION_STRING, py_version))
         btn = html.FindWindowById(wx.ID_OK)
index a3321cfbfcd057de0794ad6f327ea01a50f15755..9dac81120f5dcda7a9e713958b8954985b4b3ee0 100644 (file)
@@ -17,6 +17,8 @@ class MyHtmlWindow(html.HtmlWindow):
         html.HtmlWindow.__init__(self, parent, id, style=wx.NO_FULL_REPAINT_ON_RESIZE)
         self.log = log
         self.Bind(wx.EVT_SCROLLWIN, self.OnScroll )
+        if "gtk2" in wx.PlatformInfo:
+            self.NormalizeFontSizes()
 
     def OnScroll( self, event ):
         #print 'event.GetOrientation()',event.GetOrientation()