From fbcf416572250d1b65cbc8cb21ed85c427f4cea7 Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Fri, 3 Sep 2010 12:42:22 +0300 Subject: [PATCH] Setting statspane font size to 8 --- gui/statsPane.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gui/statsPane.py b/gui/statsPane.py index 11b9836de..bf9f15027 100644 --- a/gui/statsPane.py +++ b/gui/statsPane.py @@ -228,7 +228,9 @@ class StatsPane(wx.Panel): self._showNormalGauges = False self.mainFrame = gui.mainFrame.MainFrame.getInstance() - + standardFont = wx.SystemSettings.GetFont(wx.SYS_DEFAULT_GUI_FONT) + standardFont.SetPointSize(8) + self.SetFont(standardFont) # Register events self.mainFrame.Bind(fv.FIT_CHANGED, self.fitChanged)