- self.fbbh.SetHistory(['You', 'can', 'put', 'some', 'file', 'names', 'here'])
+ self.fbbh.SetHistory(['You', 'can', 'put', 'some', 'filenames', 'here'])
+
+ sizer = wx.BoxSizer(wx.VERTICAL)
+ sizer.Add(self.fbb, 0, wx.ALL, 5)
+ sizer.Add(self.fbbh, 0, wx.ALL, 5)
+ sizer.Add(self.dbb, 0, wx.ALL, 5)
+ box = wx.BoxSizer()
+ box.Add(sizer, 0, wx.ALL, 20)
+ self.SetSizer(box)