This might fix #197. Need to verify.

master
daid 2012-09-27 11:13:12 +02:00
parent 43ca701216
commit 19dd02fb75
1 changed files with 1 additions and 1 deletions

View File

@ -15,12 +15,12 @@ class InfoPage(wx.wizard.WizardPageSimple):
sizer = wx.GridBagSizer(5, 5)
self.sizer = sizer
self.SetSizer(sizer)
sizer.AddGrowableCol(1)
title = wx.StaticText(self, -1, title)
title.SetFont(wx.Font(18, wx.SWISS, wx.NORMAL, wx.BOLD))
sizer.Add(title, pos=(0, 0), span=(1,2), flag=wx.ALIGN_CENTRE|wx.ALL)
sizer.Add(wx.StaticLine(self, -1), pos=(1,0), span=(1,2), flag=wx.EXPAND|wx.ALL)
sizer.AddGrowableCol(1)
self.rowNr = 2