From fa05cd625f11f1b82093ae3af020a50cdcc8ef4e Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Sat, 6 Dec 2025 01:44:22 +0100 Subject: [PATCH] Add rig filter button --- gui/marketBrowser.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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)