From c0c2f75c9044632f06bc9b61cd0578540b88f3ea Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Wed, 6 Oct 2010 18:46:59 +0300 Subject: [PATCH] Dont set font size for HtmlWindow, it will look bad on macs --- gui/itemStats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/itemStats.py b/gui/itemStats.py index aa0fc1044..4c9086e45 100644 --- a/gui/itemStats.py +++ b/gui/itemStats.py @@ -152,7 +152,7 @@ class ItemDescription ( wx.Panel ): self.description = wx.html.HtmlWindow(self) - self.description.SetStandardFonts(8) + self.description.SetStandardFonts(10) desc = item.description.replace("\r","
")