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.SetStandardFonts()
 
     def OnScroll( self, event ):
         #print 'event.GetOrientation()',event.GetOrientation()
 
 def runTest(frame, nb, log):
     win = TestHtmlPanel(nb, frame, log)
-    print wx.Window_FindFocus()
     return win