Fixed a visual bug in mainFrame (CharSelection margins were set in the wrong place) - this caused artefacts on theme change

This commit is contained in:
HomeWorld
2010-12-04 15:58:16 +02:00
parent 261b79f95c
commit dc0896a1aa
2 changed files with 4 additions and 4 deletions

View File

@@ -112,7 +112,7 @@ class MainFrame(wx.Frame):
cstatsSizer = wx.BoxSizer(wx.VERTICAL)
self.charSelection = CharacterSelection(self)
cstatsSizer.Add(self.charSelection, 0, wx.EXPAND | wx.TOP | wx.RIGHT | wx.LEFT , 3)
cstatsSizer.Add(self.charSelection, 0, wx.EXPAND)
self.statsPane = StatsPane(self)
cstatsSizer.Add(self.statsPane, 0, wx.EXPAND)