Merge branch 'master' of evefit.org:pyfa

This commit is contained in:
cncfanatics
2010-10-31 10:57:40 +01:00
3 changed files with 4 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
__all__ = ["resourcesViewFull", "resistancesViewFull",
"rechargeViewFull", "firepowerViewFull", "capacitorViewFull",
"targetingmiscViewFull", "priceViewFull"]
"targetingMiscViewFull", "priceViewFull"]

View File

@@ -58,7 +58,9 @@ class MainFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None, wx.ID_ANY, title="pyfa - Python Fitting Assistant")
MainFrame.__instance = self
self.SetBackgroundColour( wx.SystemSettings.GetColour( wx.SYS_COLOUR_BTNFACE ) )
if 'wxMSW' in wx.PlatformInfo:
self.SetBackgroundColour( wx.SystemSettings.GetColour( wx.SYS_COLOUR_BTNFACE ) )
i = wx.IconFromBitmap(bitmapLoader.getBitmap("pyfa", "icons"))
self.SetIcon(i)