Add a NO_BORDER flag to the fit multi switch

This commit is contained in:
cncfanatics
2010-08-16 16:37:02 +02:00
parent ca5ab17295
commit 5105ae8ccd

View File

@@ -24,6 +24,8 @@ from gui.statsPane import StatsPane
class FitMultiSwitch(wx.Notebook):
def __init__(self, parent):
wx.Notebook.__init__(self, parent, wx.ID_ANY)
style = self.GetWindowStyleFlag()
self.SetWindowStyleFlag(style | wx.NO_BORDER)
self.AddPage(wx.Panel(self), "+")
def AddTab(self):