Disabled things that shouldn't be in RC2 (FleetBrowser/debug)

This commit is contained in:
HomeWorld
2010-12-15 19:34:57 +02:00
parent bc10b2edd6
commit ae46d14cef
3 changed files with 12 additions and 6 deletions

View File

@@ -100,8 +100,11 @@ class MainFrame(wx.Frame):
self.shipBrowser = ShipBrowser(self.notebookBrowsers)
self.notebookBrowsers.AddPage(self.shipBrowser, "Ships", showClose = False)
self.fleetBrowser = FleetBrowser(self.notebookBrowsers)
self.notebookBrowsers.AddPage(self.fleetBrowser, "Fleets", showClose = False)
#=======================================================================
# DISABLED FOR RC2 RELEASE
# self.fleetBrowser = FleetBrowser(self.notebookBrowsers)
# self.notebookBrowsers.AddPage(self.fleetBrowser, "Fleets", showClose = False)
#=======================================================================
self.notebookBrowsers.SetSelection(1)