diff --git a/gui/marketBrowser.py b/gui/marketBrowser.py index edc99a8ff..3753dff45 100644 --- a/gui/marketBrowser.py +++ b/gui/marketBrowser.py @@ -97,11 +97,12 @@ class MarketBrowser(wx.Panel): fitsBtn.setUserSelection(False) self.slotButtons.append(fitsBtn) - # High, Med, Low buttons + # High, Med, Low, Rig buttons slotMap = { FittingSlot.HIGH: "High", FittingSlot.MED: "Med", - FittingSlot.LOW: "Low" + FittingSlot.LOW: "Low", + FittingSlot.RIG: "Rig" } for slot, label in slotMap.items(): slotBtn = MetaButton(p, wx.ID_ANY, label, style=wx.BU_EXACTFIT)