From 6fafe40f35203d0a8983d5f894ff923aff388ad5 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Fri, 7 Nov 2014 23:17:14 -0500 Subject: [PATCH] Fix for a fix that was removed with a fix (see #62) --- gui/shipBrowser.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gui/shipBrowser.py b/gui/shipBrowser.py index c928a851d..ac98c8e31 100644 --- a/gui/shipBrowser.py +++ b/gui/shipBrowser.py @@ -1399,6 +1399,9 @@ class FitItem(SFItem.SFBrowserItem): self.shipFittingInfo = shipFittingInfo self.shipName, self.fitName, self.fitBooster, self.timestamp = shipFittingInfo + # see GH issue #62 + if self.fitBooster is None: self.fitBooster = False + # access these by index based on toggle for booster fit self.fitMenu = wx.Menu()