Fix attempt ...., wait what? Hardcode the wx.choice size (30 px height)

This commit is contained in:
HomeWorld
2010-09-16 22:16:56 +03:00
parent e11feae5fe
commit 28dac9b6ad

View File

@@ -43,8 +43,7 @@ class CharacterSelection(wx.Panel):
self.mainFrame.Bind(ce.CHAR_LIST_UPDATED, self.refreshCharacterList)
self.mainFrame.Bind(fv.FIT_CHANGED, self.fitChanged)
panelSize = self.GetSize()
panelSize.height += 5
panelSize = wx.Size(-1,30)
self.SetMinSize(panelSize)
self.Enable(False)