diff --git a/gui/boosterView.py b/gui/boosterView.py index fe0d802d3..b90350bf8 100644 --- a/gui/boosterView.py +++ b/gui/boosterView.py @@ -43,9 +43,12 @@ class BoosterViewDrop(wx.PyDropTarget): class BoosterView(d.Display): - DEFAULT_COLS = ["State", - "attr:boosterness", - "Base Name"] + DEFAULT_COLS = [ + "State", + "attr:boosterness", + "Base Name", + "Price", + ] def __init__(self, parent): d.Display.__init__(self, parent, style=wx.LC_SINGLE_SEL | wx.BORDER_NONE) diff --git a/gui/statsView.py b/gui/statsView.py index 464359695..dc4c0276b 100644 --- a/gui/statsView.py +++ b/gui/statsView.py @@ -52,6 +52,7 @@ from gui.builtinStatsViews import ( # noqa: E402, F401 rechargeViewFull, targetingMiscViewMinimal, priceViewFull, + priceViewMinimal, outgoingViewFull, outgoingViewMinimal, )