Commented the lines where we set the bk colour in statspane/pyfatogglepanel

This commit is contained in:
HomeWorld
2010-09-16 12:39:27 +03:00
parent dd582d8397
commit 0ce9dd9ee2
2 changed files with 3 additions and 3 deletions

View File

@@ -37,10 +37,10 @@ class TogglePanel ( wx.Panel ):
self._toggle = 1
self.parent = parent
self.bkColour = parent.GetBackgroundColour()
# self.bkColour = parent.GetBackgroundColour()
# Odd stuff :S
self.SetBackgroundColour( self.bkColour )
# self.SetBackgroundColour( self.bkColour )
# Create the main sizer of this panel

View File

@@ -47,7 +47,7 @@ class StatsPane(wx.Panel):
standardFont.SetPointSize(8)
self.SetFont(standardFont)
self.SetBackgroundColour(parent.GetBackgroundColour())
# self.SetBackgroundColour(parent.GetBackgroundColour())
mainSizer = wx.BoxSizer(wx.VERTICAL)
self.SetSizer(mainSizer)