From bf16246825514492cb3367cfe2a7f08fd684cb26 Mon Sep 17 00:00:00 2001 From: blitzman Date: Tue, 22 Nov 2016 20:44:19 -0500 Subject: [PATCH] Disable booster fit icon (for now) --- gui/shipBrowser.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gui/shipBrowser.py b/gui/shipBrowser.py index 60afb6d91..e1271b616 100644 --- a/gui/shipBrowser.py +++ b/gui/shipBrowser.py @@ -1454,7 +1454,10 @@ class FitItem(SFItem.SFBrowserItem): self.shipName, self.shipTrait, self.fitName, self.fitBooster, self.timestamp = shipFittingInfo self.shipTrait = re.sub("<.*?>", " ", self.shipTrait) # see GH issue #62 - if self.fitBooster is None: self.fitBooster = False + + # Disabling this due to change in gang boosts Nov 2016 + #if self.fitBooster is None: self.fitBooster = False + self.fitBooster = False self.boosterBmp = BitmapLoader.getBitmap("fleet_fc_small", "gui") self.copyBmp = BitmapLoader.getBitmap("fit_add_small", "gui")