From 77b618404ffe345a3c7abb2cbe3bf6ee53394849 Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Thu, 16 Sep 2010 22:28:21 +0300 Subject: [PATCH] Align the choice control in characterselection correctly --- gui/characterSelection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/characterSelection.py b/gui/characterSelection.py index fbde09e93..196e870b5 100644 --- a/gui/characterSelection.py +++ b/gui/characterSelection.py @@ -35,7 +35,7 @@ class CharacterSelection(wx.Panel): mainSizer.Add(wx.StaticText(self, wx.ID_ANY, "Character: "), 0, wx.CENTER) self.charChoice = wx.Choice(self) - mainSizer.Add(self.charChoice, 1, wx.EXPAND) + mainSizer.Add(self.charChoice, 1, wx.ALIGN_CENTER_VERTICAL) self.refreshCharacterList()