i have an app i'm imgrating to 2.6 from 2.4, and for some reason not all of my staticbox's show up. example of my code:
PaperStaticBox = wx.StaticBox(PaperWorkReportPanel,-1,'Report')
PaperStaticBoxSizer = wx.StaticBoxSizer(PaperStaticBox,wx.HORIZONTAL)
PaperStaticBoxSizer.Add(self.PaperWorkSecretShopper,0,wx.ALIGN_LEFT|wx.ALL,border=5)
PaperStaticBoxSizer.Add(self.PaperWorkWeeklyInspection,0,wx.ALIGN_LEFT|wx.ALL,border=5)
is there any known gotchas for migrating to 2.6 from 2.4 for these? it's stange, these boxes are nested inside another box, and the outer box shows but the inside ones dont.