Add rig filter button

This commit is contained in:
2025-12-06 01:44:22 +01:00
parent d18ebb6dc0
commit fa05cd625f

View File

@@ -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)